I\'m damned if I can figure out why my models are not showing in the admin.
models.py looks like this:
from django.db import models class Publication(mo
Make sure you are calling:
admin.site.register()
and not
admin.register()
This was the cause for me.