Files
dnd-db-site/faerun_calendar/urls.py
T
2022-07-14 15:47:31 +03:00

10 lines
166 B
Python

from django.urls import path
from . import views
urlpatterns = [
path('', views.index, name='index'),
path('<int:year>', views.year_page, name='index'),
]