From 57682d4607afe7bb122f27c5bde07a4b77d9a4a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juhn-Vitus=20Sa=C3=9F?= Date: Sat, 15 Mar 2025 16:30:09 +0100 Subject: [PATCH] Fix routing issue --- core/play/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/play/views.py b/core/play/views.py index 055a1ad..b0c7e53 100644 --- a/core/play/views.py +++ b/core/play/views.py @@ -16,7 +16,7 @@ def create_participant(request): if request.method == 'POST': display_name = request.POST.get('username') join_code = request.POST.get('join_code') - return render('play/initialize_participant.html', {'join_code': join_code}) + return render(request, 'play/initialize_participant.html', {'join_code': join_code}) def join_game(request): if request.method == 'POST':