HH/apps/analytics/urls.py
2026-01-05 19:40:24 +03:00

16 lines
571 B
Python

from django.urls import path
from . import ui_views
app_name = 'analytics'
urlpatterns = [
# UI Views
path('dashboard/', ui_views.analytics_dashboard, name='dashboard'),
path('kpis/', ui_views.kpi_list, name='kpi_list'),
# Command Center - Unified Dashboard
path('command-center/', ui_views.command_center, name='command_center'),
path('api/command-center/', ui_views.command_center_api, name='command_center_api'),
path('api/command-center/export/<str:export_format>/', ui_views.export_command_center, name='command_center_export'),
]