mirror of
https://github.com/MarijnDoeve/TijdVoorDeTest.git
synced 2026-03-05 20:44:19 +01:00
12 lines
312 B
Python
12 lines
312 B
Python
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()),
|
|
]
|