5d1b26d4f7
Signed-off-by: Nico Schottelius <nico@freiheit.schottelius.org>
6 lines
163 B
Python
6 lines
163 B
Python
from django.shortcuts import render
|
|
|
|
from django.http import HttpResponse
|
|
|
|
def index(request):
|
|
return HttpResponse("Hello, world. You're at the polls index.")
|