Hi!
I’m on the chapter about registration-redux and I’m not sure where this needs to be in urls.py:
It looks like there should be something after the first include? In the line "from django.urls import path, include "
I assumed the second part goes in the urlpatterns:
path(‘collectible//edit’, views.edit_collectible, name=‘edit_collectible’),
path(‘accounts/’, include(‘registration.backends.simple.urls’)),
path(‘admin/’, admin.site.urls),
]
But I’m not really sure. Thanks!