Templates fuer Fragen

This commit is contained in:
juhnsa
2025-03-16 17:08:38 +01:00
parent f18ed83f9d
commit d2375e136a
6 changed files with 144 additions and 5 deletions

View File

@@ -4,7 +4,9 @@ from . import views
app_name = 'play'
urlpatterns = [
path('lobby/<str:join_code>', views.lobby, name='lobby'),
path('lobby/<str:join_code>/participate', views.create_participant, name='create_participant'),
path('game/<str:join_code>', views.lobby, name='lobby'),
path('game/<str:join_code>/participate', views.create_participant, name='create_participant'),
path('join', views.join_game, name='join_game'),
path('game/<str:join_code>/<int:question_id>', views.question, name='question'),
path('game/<str:join_code>/<int:question_id>/participant', views.question_participant, name='question_participant'),
]