Step 4 and 5 instruct to import and then register the models in admin.py.
from django.contrib import admin
# Import your Week and Choice models below:
from .models import Week, Choice
# Register your Week and Choice models below:
admin.site.register(Week)
admin.site.register(Choice)
Am I doing something wrong, or is there a fix for this?
Same for me, the minibrowser goes blank and cant reload properly after adding the registration lines.
I tried restaring the server, refreshing the minibrowser, navigatin on the address bar, but it doesnt seem to work properly