mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-06 04:44:19 +01:00
Things!
This commit is contained in:
11
tvdt/elimination/urls.py
Normal file
11
tvdt/elimination/urls.py
Normal file
@@ -0,0 +1,11 @@
|
||||
from django.urls import path, register_converter
|
||||
|
||||
from tvdt.converters import SeasonCodeConverter
|
||||
|
||||
from .views import EliminationHomeView
|
||||
|
||||
register_converter(SeasonCodeConverter, "season")
|
||||
urlpatterns = [
|
||||
path("", EliminationHomeView.as_view()),
|
||||
path("<season:season>", EliminationHomeView.as_view()),
|
||||
]
|
||||
Reference in New Issue
Block a user