Files
Quatsh-Website/src/polls/views.py
WGAVermeer 26c6f46531
Some checks failed
Gitea build & Test. / tests (push) Failing after 3s
added poll app for testing purposes. Will be removed later.
2026-03-11 08:13:35 +01:00

10 lines
191 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.")
# Create your views here.