Menu
×
×
Correct!
Exercise:Inside the urls.py file there is a list of paths of how to handle incomming requests, what is the name of this list?
from django.contrib import admin
from django.urls import include, path
@(11) = [
path('', include('members.urls')),
path('admin/', admin.site.urls),
]
from django.contrib import admin
from django.urls import include, path
urlpatterns = [
path('', include('members.urls')),
path('admin/', admin.site.urls),
]
Not CorrectClick here to try again. Correct!Next ❯ |