1
0
mirror of https://gitlab.com/animath/si/plateforme.git synced 2025-07-03 17:22:51 +02:00

Display tournament list

This commit is contained in:
Yohann D'ANELLO
2020-04-29 16:26:52 +02:00
parent eead385218
commit e865910ee3
10 changed files with 135 additions and 23 deletions

9
apps/tournament/urls.py Normal file
View File

@ -0,0 +1,9 @@
from django.urls import path
from .views import TournamentListView
app_name = "tournament"
urlpatterns = [
path('list/', TournamentListView.as_view(), name="list"),
]