mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-03-25 02:41:15 +01:00
23 lines
535 B
Python
23 lines
535 B
Python
from django.urls import path
|
|
|
|
from . import views
|
|
|
|
urlpatterns = [
|
|
path("monthly/", views.index, name="monthly_index"),
|
|
path(
|
|
"monthly/<int:month>/<int:year>/transactions/list/",
|
|
views.transactions_list,
|
|
name="monthly_transactions_list",
|
|
),
|
|
path(
|
|
"monthly/<int:month>/<int:year>/",
|
|
views.monthly_overview,
|
|
name="monthly_overview",
|
|
),
|
|
path(
|
|
"monthly/<int:month>/<int:year>/summary/",
|
|
views.monthly_summary,
|
|
name="monthly_summary",
|
|
),
|
|
]
|