Resolve "Seite für Namen und Avatar Auswahl erstellen" #178

Merged
henrik merged 8 commits from 35-seite-fur-namen-und-avatar-auswahl-erstellen into master 2025-03-15 20:16:29 +00:00
Showing only changes of commit 57682d4607 - Show all commits
+1 -1
View File
@@ -16,7 +16,7 @@ def create_participant(request):
if request.method == 'POST': if request.method == 'POST':
display_name = request.POST.get('username') display_name = request.POST.get('username')
join_code = request.POST.get('join_code') 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): def join_game(request):
if request.method == 'POST': if request.method == 'POST':