15 lines
674 B
Python
15 lines
674 B
Python
from django.urls import path
|
|
from . import views
|
|
|
|
app_name = 'play'
|
|
|
|
urlpatterns = [
|
|
path('game/new/<int:quiz_id>', views.create_game, name='create_game'),
|
|
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>/question', views.question, name='question'),
|
|
path('game/<str:join_code>/waiting', views.waiting_room, name='waiting'),
|
|
path('game/<str:join_code>/scores', views.scores, name='scores'),
|
|
path('game/<str:join_code>/finished', views.finished, name='finished'),
|
|
] |