Files
kakebo/core/urls.py
Andros Fenollosa 7bce661d55 Add Year page placeholder and navbar button
- New yearly app with empty Year page
- Year button with chart icon in both mobile and desktop nav
- Positioned between Month and Settings
2026-03-18 15:36:00 +01:00

16 lines
490 B
Python

from django.contrib import admin
from django.urls import path, include
from django.conf import settings
from django.conf.urls.static import static
urlpatterns = [
path("admin/", admin.site.urls),
path("api/", include("app.api.urls")),
path("", include("app.expenses.urls")),
path("month/", include("app.monthly.urls")),
path("year/", include("app.yearly.urls")),
path("", include("app.public.urls")),
]
urlpatterns += static(settings.STATIC_URL, document_root=settings.STATIC_ROOT)