Hi guys, here's bit of my code http://dpaste.com/hold/787292/
The problem is that my Answer model in admin is missing the 'is_correct', 'date_added' and 'modified' fields. <https://lh4.googleusercontent.com/-FuxmFXdGVP4/UC0K_dwpIhI/AAAAAAAAADI/deTk9J_tQOE/s1600/Screenshot+from+2012-08-16+15%3A57%3A35.png> I tried adding: fieldsets = [ (None, {'fields': ['text','is_correct','explanation']}), ] to my AnswerInLine definition but that throws an ImproperlyConfigured error saying: 'AnswerInline.fieldsets[0][1]['fields']' refers to field 'is_correct' that is missing from the form. Can anyone help out? -- You received this message because you are subscribed to the Google Groups "Django users" group. To view this discussion on the web visit https://groups.google.com/d/msg/django-users/-/qK1kFc-11lQJ. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/django-users?hl=en.

