plateforme-tfjm2/apps/tournament/urls.py

10 lines
174 B
Python
Raw Normal View History

2020-04-29 14:26:52 +00:00
from django.urls import path
from .views import TournamentListView
app_name = "tournament"
urlpatterns = [
path('list/', TournamentListView.as_view(), name="list"),
]