Django admin.py missing field error
- by user782400
When I include 'caption', I get an error saying EntryAdmin.fieldsets[1][1]['fields']' refers to field 'caption' that is missing from the form
In the admin.py; I have imported the classes from joe.models import Entry,Image
Is that because my class from models.py is not getting imported properly ?
Need help in resolving this issue.
Thanks.
…