feat: add yearly overview by account

This commit is contained in:
Herculino Trotta
2024-10-31 23:13:29 -03:00
parent c7174e7b53
commit edf07082e2
9 changed files with 428 additions and 100 deletions
+10 -4
View File
@@ -3,10 +3,16 @@ from django.urls import path
from . import views
urlpatterns = [
path("yearly/", views.index, name="yearly_index"),
path("yearly/currency/", views.index_by_currency, name="yearly_index_currency"),
path("yearly/account/", views.index_by_account, name="yearly_index_account"),
path(
"yearly/<int:year>/",
views.yearly_overview,
name="yearly_overview",
"yearly/currency/<int:year>/",
views.yearly_overview_by_currency,
name="yearly_overview_currency",
),
path(
"yearly/account/<int:year>/",
views.yearly_overview_by_account,
name="yearly_overview_account",
),
]