Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

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 the urls.py file. Here is an example,

    Code Block
    from django.http import HttpResponse
    
    def home(request):
        return HttpResponse("Hello, World!")