Improve forms
All checks were successful
Django CI/CD / test (push) Successful in 1m17s
Django CI/CD / build-and-push (push) Successful in 2m10s

This commit is contained in:
2025-02-04 20:09:25 +01:00
parent b22e185d47
commit 34148466c7
5 changed files with 121 additions and 71 deletions

View File

@ -217,7 +217,7 @@ def add_session(request: HttpRequest, game_id: int = 0) -> HttpResponse:
context["title"] = "Add New Session"
context["script_name"] = "add_session.js"
context["form"] = form
return render(request, "add_session.html", context)
return render(request, "add.html", context)
@login_required