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.
16 lines
675 B
16 lines
675 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('dashboard/', views.createNewGame, name='createNewGame'), |
|
path('admin-dashboard/', views.dashboard, name='admin-dashboard'), |
|
path('admin-distances/', views.distances, name='admin-distances'), |
|
path('settings/', views.settings, name='settings'), |
|
path('dashboard/createNewGame', views.createNewGame, name='createNewGame'), |
|
]
|
|
|