ungleich-learning-circle/sami/django/mysite/polls/views.py
2020-07-03 16:59:57 +02:00

17 lines
309 B
Python

# from django.shortcuts import render
# Create your views here.
#from django.urls import path
#from . import views
#urlpatterns = [
# path('', views.index, name='index'),
#]
from django.http import HttpResponse
def index(request):
return HttpResponse("Hello, world. You're at the polls index.")