Fix routing issue
This commit is contained in:
@@ -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':
|
||||||
|
|||||||
Reference in New Issue
Block a user