2026-04-29 01:27:16 +03:30
|
|
|
from django.urls import path
|
|
|
|
|
|
|
|
|
|
from .views import SensorComparisonChartView, SensorRadarChartView, SensorValuesListView
|
|
|
|
|
|
|
|
|
|
urlpatterns = [
|
|
|
|
|
path("comparison-chart/", SensorComparisonChartView.as_view(), name="sensor-comparison-chart"),
|
|
|
|
|
path("radar-chart/", SensorRadarChartView.as_view(), name="sensor-radar-chart"),
|
|
|
|
|
path("values-list/", SensorValuesListView.as_view(), name="sensor-values-list"),
|
|
|
|
|
]
|
2026-05-05 00:56:05 +03:30
|
|
|
|