from django.urls import path from . import views app_name = 'play' urlpatterns = [ path('game/new/', views.create_game, name='create_game'), path('game/', views.lobby, name='lobby'), path('game//participate', views.create_participant, name='create_participant'), path('join', views.join_game, name='join_game'), path('game//', views.question, name='question'), path('game///participant', views.question_participant, name='question_participant'), ]