Django tuorial weekly dessert project

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?

2 Likes

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

1 Like

It’s the same for me. Do they even check the forum? It’s been 25 days. The Django course is a mess.