django-tutorial/polls/views.py

4 lines
118 B
Python

from django.http import HttpResponse
def index(request):
return HttpResponse("hello from within the poll index!")