first commit

This commit is contained in:
2025-11-28 00:20:23 +03:00
commit a8473eec11
13 changed files with 649 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
from django.urls import path
from . import views
urlpatterns = [
path("", views.dashboard, name="dashboard"),
path("api/metrics/", views.metrics_api, name="metrics_api"),
path("report/pdf/", views.report_pdf, name="report_pdf"),
]