New api and zone management; highligh occlusion and highlighAll functionality; improved search in reports and alerts history + autofill; refactored alert panel

This commit is contained in:
iv_vuytsik
2025-12-25 03:10:21 +03:00
parent 31030f2997
commit ce7e39debf
36 changed files with 1562 additions and 472 deletions

View File

@@ -4,6 +4,7 @@ from .views.objects_views import ObjectView
from .views.sensors_views import SensorView
from .views.alert_views import AlertView, ReportView
from .views.dashboard_views import DashboardView
from .views.zones_views import ZoneView
from drf_spectacular.views import (
SpectacularAPIView,
SpectacularSwaggerView,
@@ -36,4 +37,6 @@ urlpatterns = [
path("get-reports/", ReportView.as_view({'post': 'get_reports'}), name="reports"),
path("get-dashboard/", DashboardView.as_view(), name="dashboard"),
path("get-zones/", ZoneView.as_view(), name="zones"),
]