1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-02-06 16:53:02 +00:00

11 lines
266 B
Python
Raw Normal View History

2020-04-29 16:26:52 +02:00
from django.urls import path
2020-04-29 16:59:59 +02:00
from .views import TournamentListView, TournamentDetailView
2020-04-29 16:26:52 +02:00
app_name = "tournament"
urlpatterns = [
path('list/', TournamentListView.as_view(), name="list"),
2020-04-29 16:59:59 +02:00
path('<int:pk>/', TournamentDetailView.as_view(), name="detail"),
2020-04-29 16:26:52 +02:00
]