init: tournament
This commit is contained in:
10
tournament/urls.py
Normal file
10
tournament/urls.py
Normal file
@ -0,0 +1,10 @@
|
||||
from django.urls import path
|
||||
from django.conf import settings
|
||||
from django.conf.urls.static import static
|
||||
|
||||
from .views import TournamentsView, TournamentView
|
||||
|
||||
urlpatterns = [
|
||||
path("<int:pk>", name="tournament_page"),
|
||||
path("", TournamentsView.as_view(), name="tournaments"),
|
||||
]
|
Reference in New Issue
Block a user