May 2020
Intermediate to advanced
404 pages
10h 52m
English
Change the code in ordersui/urls.py to add the path to include the route setting file inside the apiui app. Your file will contain the following code:
from django.contrib import adminfrom django.urls import path, includeurlpatterns = [ path('', include('apiui.urls')),]
Save the file. After setting the routes at the project level, we will need to set routes at the module level, as we'll do in the next section.
Read now
Unlock full access