You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

14 lines
552 B

from django.urls import path
from . import views
app_name = 'app'
urlpatterns = [
path('', views.displayZone, name='displayZone'),
path('<int:zone_id>/', views.displayZone, name='displayZone'),
path('setEquipe/', views.setEquipe, name='setEquipe'),
path('dashboard/', views.dashboard, name='admin-dashboard'),
path('admin-dashboard/', views.dashboard, name='admin-dashboard'),
path('admin-distances/', views.distances, name='admin-distances'),
path('dashboard/createNewGame', views.createNewGame, name='createNewGame'),
]