Created
March 4, 2023 20:03
-
-
Save ILoveBacteria/1e61c4f0ab787cb04cb4f0930b8a143b to your computer and use it in GitHub Desktop.
How to write a view in Django
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from django.http import HttpResponse | |
def index(request): | |
return HttpResponse("Hello, world. You're at the polls index.") |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment