On Mon, 2009-08-10 at 20:43 -0700, zignorp wrote:
> Hello,
> I just added a model to models.py,
> 
> class Topic (models.Model):
>       topic = models.CharField(max_length=180, blank=True, null=True)
> 
>       def __unicode__(self):
>               return self.topic
> 
> I can see it in the model that's calling it:
> class Film(models.Model):
>         topic = models.ManyToManyField(Topic, blank=True)
> 
> but I can't see it in the admin.

Did you add a call in your admins.py file to register Topic with the
admin? Like you will have done for the Film model?

Models don't automatically show up in the admin interface. The admin app
needs to be told they exist.

Regards,
Malcolm



--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to