From 2d7dbdff49d82cb6256783a95e25ae2b70bfedc4 Mon Sep 17 00:00:00 2001 From: Pablo Revilla Date: Thu, 22 May 2025 18:24:08 -0700 Subject: [PATCH] Readded node_graphs --- meshview/templates/node_graphs.html | 201 ++++++++++++++++++++++++++++ 1 file changed, 201 insertions(+) create mode 100644 meshview/templates/node_graphs.html diff --git a/meshview/templates/node_graphs.html b/meshview/templates/node_graphs.html new file mode 100644 index 0000000..f6cfd8e --- /dev/null +++ b/meshview/templates/node_graphs.html @@ -0,0 +1,201 @@ + +{% macro graph(name) %} +
+{% endmacro %} + + +
+ + +
+ + + + + +
+ {% for name in [ + "power", "utilization", "temperature", "humidity", "pressure", + "iaq", "wind_speed", "wind_direction", "power_metrics", "neighbors" + ] %} +
+ {{ graph(name) | safe }} +
+ {% endfor %} +
+ + + + + + + + \ No newline at end of file