...
The app needs at least one view.
Add a function to the app
views.py
file with a name that matches the function name specified in theurls.py
file. Here is an example,Code Block from django.http import HttpResponse def home(request): return HttpResponse("Hello, World!")