mirror of
https://gitlab.com/animath/si/plateforme.git
synced 2025-02-06 17:33:01 +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"),
|
|
]
|