Add yearly stats page

Fixes #15
This commit is contained in:
2023-11-01 20:18:39 +01:00
parent a5b2854bf6
commit 57d4fd7212
5 changed files with 130 additions and 13 deletions

View File

@ -73,4 +73,9 @@ urlpatterns = [
{"filter": "ownership_type"},
name="list_sessions_by_ownership_type",
),
path(
"stats/<int:year>",
views.stats,
name="stats_by_year",
),
]