10 lines
283 B
Python
10 lines
283 B
Python
|
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"),
|
||
|
]
|