On 4/2/06, Todd O'Bryan <[EMAIL PROTECTED]> wrote:
> I've tried replacing
>
> class META:
>         admin = meta.Admin()
>
> with
>
> class Admin:

You need to have

class Admin:
    pass

You'll get errors if you don't include the "pass" line if there's
nothing else in the class. That should be enough to get model into the
admin screens.


Regards,
Ian Clelland
<[EMAIL PROTECTED]>

--~--~---------~--~----~------------~-------~--~----~
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
-~----------~----~----~----~------~----~------~--~---

Reply via email to