Created
May 9, 2020 18:05
-
-
Save H3lllfir3/13756a8beca2c77321d11893570c22a2 to your computer and use it in GitHub Desktop.
first django view
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