May 2020
Intermediate to advanced
404 pages
10h 52m
English
To add the app to the project, we need to add the app name to the list of apps in settings.py in the project settings file, as in the following code. In settings.py, add the following change:
# Application definitionINSTALLED_APPS = [ 'billboard', # <---- ADD THIS LINE 'django.contrib.admin', 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.messages', 'django.contrib.staticfiles',]
With this, we are ready to create the routes on the website.
Read now
Unlock full access