mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-27 03:41:21 +01:00
13 lines
234 B
Python
13 lines
234 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("yearly/", views.index, name="yearly_index"),
|
|
path(
|
|
"yearly/<int:year>/",
|
|
views.yearly_overview,
|
|
name="yearly_overview",
|
|
),
|
|
]
|