May 2020
Intermediate to advanced
404 pages
10h 52m
English
To add routes to the project, we edit the urls.py file of webapp:
from django.contrib import adminfrom django.urls import path, include # <--- ADD 'include' moduleurlpatterns = [ path('', include('billboard.urls')), # <--- ADD billboard.urls path path('admin/', admin.site.urls),]
However, the billboard.urls path does not exist. We'll create the path to proceed.
Read now
Unlock full access