[Answer]-Why isn't this module displaying in the django 1.4 admin interface?

1👍

Few things to help finding the problem:

  • Do you have admin.autodiscover() in your urls.py
  • Have you run syncdb
  • Have you tried to open manage.py shell and import the model to see if there are errors.
👤Lycha

0👍

You probably do not have an entry in your INSTALLED_APPS setting for this app.

Leave a comment