mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-21 00:49:29 +01:00
29 lines
840 B
Python
29 lines
840 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("yearly/currency/", views.index_by_currency, name="yearly_index_currency"),
|
|
path("yearly/account/", views.index_by_account, name="yearly_index_account"),
|
|
path(
|
|
"yearly/currency/<int:year>/",
|
|
views.index_yearly_overview_by_currency,
|
|
name="yearly_overview_currency",
|
|
),
|
|
path(
|
|
"yearly-overview/<int:year>/currency/data/",
|
|
views.yearly_overview_by_currency,
|
|
name="yearly_overview_currency_data",
|
|
),
|
|
path(
|
|
"yearly/account/<int:year>/",
|
|
views.index_yearly_overview_by_account,
|
|
name="yearly_overview_account",
|
|
),
|
|
path(
|
|
"yearly-overview/<int:year>/account/data/",
|
|
views.yearly_overview_by_account,
|
|
name="yearly_overview_account_data",
|
|
),
|
|
]
|