mirror of
https://github.com/eitchtee/WYGIWYH.git
synced 2026-07-15 09:12:39 +02:00
feat: add calendar view
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
from django.urls import path
|
||||
|
||||
from . import views
|
||||
|
||||
urlpatterns = [
|
||||
path("calendar/", views.index, name="calendar_index"),
|
||||
path(
|
||||
"calendar/<int:month>/<int:year>/list/",
|
||||
views.calendar_list,
|
||||
name="calendar_list",
|
||||
),
|
||||
path(
|
||||
"calendar/<int:day>/<int:month>/<int:year>/transactions/",
|
||||
views.calendar_transactions_list,
|
||||
name="calendar_transactions_list",
|
||||
),
|
||||
path(
|
||||
"calendar/<int:month>/<int:year>/",
|
||||
views.calendar,
|
||||
name="calendar",
|
||||
),
|
||||
# path(
|
||||
# "calendar/available_dates/",
|
||||
# views.month_year_picker,
|
||||
# name="available_dates",
|
||||
# ),
|
||||
]
|
||||
Reference in New Issue
Block a user