1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-02-06 18:13:02 +00:00
Yohann D'ANELLO f57d7554e7 Display teams
2020-04-29 16:59:59 +02:00

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"),
]