1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-02-06 21:33:02 +00:00
Yohann D'ANELLO 3fdda5a030 Display teams
2020-04-29 17:58:11 +02:00

12 lines
356 B
Python

from django.urls import path
from .views import TournamentListView, TournamentDetailView, TeamDetailView
app_name = "tournament"
urlpatterns = [
path('list/', TournamentListView.as_view(), name="list"),
path('<int:pk>/', TournamentDetailView.as_view(), name="detail"),
path('team/<int:pk>/', TeamDetailView.as_view(), name="team_detail"),
]