That just says that your Entry class inherits from the Model class, which is found in the models module. I am a relative noob also, and found a hard copy Django book was my best initial source.
On Mar 10, 10:09 am, Rico <[email protected]> wrote: > > Since you realize that the problem is in how you've registered the Entry > > class, don't you think it would be a good idea to show us how you're doing > > it in that admin.py? > > -- > > DR. > > I've managed to solve the problem - it wasn't in the admin.py - it was with > my models.py. > > *class Entry():* > * stuff* > * > * > changed to: > > *class Entry(models.Model):* > * stuff* > * > * > I don't understand what that did, but it was the root of my problem. -- You received this message because you are subscribed to the Google Groups "Django users" group. 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.

