I am trying to complete the weekly dessert project using Django.
[Accounts and Authentication | Codecademy]
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?