Files
kakebo/app/monthly/urls.py
Andros Fenollosa 443708d59d Restructure Month page into 4 sections with notes
- Month start: income, fixed expenses, budget (existing)
- Month end: placeholder
- Expense summary: placeholder
- Notes: textarea saved per user/month via LiveView
- Add MonthlyNote model (user, year, month, text)
- Add save_monthly_note LiveView handler
- Move subcategory expenses to Other before deletion
- Move category action buttons below title
2026-03-17 15:05:50 +01:00

9 lines
138 B
Python

from django.urls import path
from . import views
app_name = "monthly"
urlpatterns = [
path("", views.month_view, name="month_view"),
]