1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-07-03 18:42:50 +02:00

Display teams

This commit is contained in:
Yohann D'ANELLO
2020-04-29 16:59:59 +02:00
parent e865910ee3
commit f57d7554e7
7 changed files with 139 additions and 7 deletions

View File

@ -1,9 +1,10 @@
from django.urls import path
from .views import TournamentListView
from .views import TournamentListView, TournamentDetailView
app_name = "tournament"
urlpatterns = [
path('list/', TournamentListView.as_view(), name="list"),
path('<int:pk>/', TournamentDetailView.as_view(), name="detail"),
]