views.py 188 B

1234567
  1. from django.shortcuts import render
  2. from django.http import HttpResponse
  3. # Create your views here.
  4. def index(request):
  5. return HttpResponse("Hello, world. You're at the polls index.")