mirror of
https://github.com/skoobasteeve/django-movies.git
synced 2026-03-20 03:28:59 +00:00
10 lines
221 B
Python
10 lines
221 B
Python
from django.http import HttpResponse
|
|
|
|
|
|
def index(request):
|
|
return HttpResponse("Hello, world. You're at the polls index.")
|
|
|
|
|
|
def index2(request):
|
|
return HttpResponse("Hello, world. You're at the polls index #2.")
|