- New yearly app with empty Year page - Year button with chart icon in both mobile and desktop nav - Positioned between Month and Settings
16 lines
490 B
Python
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)
|