mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-07-07 05:15:22 +02:00
feat: add yearly overview by account
This commit is contained in:
@@ -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",
|
||||
),
|
||||
]
|
||||
|
||||
Reference in New Issue
Block a user