mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-02-11 17:41:20 +00:00
10 lines
174 B
Python
10 lines
174 B
Python
|
from django.urls import path
|
||
|
|
||
|
from .views import TournamentListView
|
||
|
|
||
|
app_name = "tournament"
|
||
|
|
||
|
urlpatterns = [
|
||
|
path('list/', TournamentListView.as_view(), name="list"),
|
||
|
]
|