I am following the official Django tutorial. I’m stuck in Part 2.
I register the Poll object for admin but never see it. Where do I start to debug and fix this?
I created an admin.py in my polls/ folder:
from polls.models import Poll
from django.contrib import admin
admin.site.register(Poll)
Two good things to check:
If you check the comments on my question you can see how this got resolved. Essentially my problem was that the app was not in INSTALLED_APPS.
Thanks to @Daniel Roseman and @pastylegs