mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-02-06 18:13:02 +00:00
11 lines
266 B
Python
11 lines
266 B
Python
from django.urls import path
|
|
|
|
from .views import TournamentListView, TournamentDetailView
|
|
|
|
app_name = "tournament"
|
|
|
|
urlpatterns = [
|
|
path('list/', TournamentListView.as_view(), name="list"),
|
|
path('<int:pk>/', TournamentDetailView.as_view(), name="detail"),
|
|
]
|