mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-04-25 01:58:54 +02:00
changes
This commit is contained in:
27
app/apps/monthly_overview/urls.py
Normal file
27
app/apps/monthly_overview/urls.py
Normal file
@@ -0,0 +1,27 @@
|
||||
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",
|
||||
),
|
||||
path(
|
||||
"available_dates/",
|
||||
views.month_year_picker,
|
||||
name="available_dates",
|
||||
),
|
||||
]
|
||||
Reference in New Issue
Block a user