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?

4 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

3 Likes

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

2 Likes

This topic was automatically closed 41 days after the last reply. New replies are no longer allowed.