feat: add better layout for yearly_overview_by_currency

This commit is contained in:
Herculino Trotta
2024-11-01 23:20:40 -03:00
parent fcbce21cfa
commit b3869a0ff2
4 changed files with 259 additions and 173 deletions
+6 -1
View File
@@ -7,9 +7,14 @@ urlpatterns = [
path("yearly/account/", views.index_by_account, name="yearly_index_account"),
path(
"yearly/currency/<int:year>/",
views.yearly_overview_by_currency,
views.index_yearly_overview_by_currency,
name="yearly_overview_currency",
),
path(
"yearly-overview/<int:year>/data/",
views.yearly_overview_by_currency,
name="yearly_overview_currency_data",
),
path(
"yearly/account/<int:year>/",
views.yearly_overview_by_account,