ungleich-learning-circle/sami/django/mysite/polls/views.py

18 lines
309 B
Python
Raw Normal View History

2020-07-03 14:59:57 +00:00
# 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.")