django test

This commit is contained in:
Sklvd
2023-05-12 23:02:27 +03:00
parent e094efa7aa
commit a657428482
25 changed files with 331 additions and 0 deletions
@@ -0,0 +1,10 @@
from django.http import HttpResponse
from django.shortcuts import render
def index(request):
context = {
"text": "test",
"list": [0, 1, 2, 3, "frogg"]
}
return HttpResponse(render(request, "polls/index.html", context))