mutable template added

This commit is contained in:
pErfEcto2
2023-05-11 11:08:00 +03:00
parent d8da3239dd
commit 8dab84f38d
15 changed files with 20 additions and 3 deletions
@@ -5,7 +5,8 @@ from django.shortcuts import render
def index(request):
context = {
"text": "test"
"text": "test",
"list": range(101)
}
return HttpResponse(render(request, "polls/index.html", context))