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)