more changes

This commit is contained in:
Herculino Trotta
2024-10-13 12:10:50 -03:00
parent 1717d8a94e
commit d20897a28a
33 changed files with 1552 additions and 153 deletions
+12
View File
@@ -0,0 +1,12 @@
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",
),
]