diff --git a/meshview/templates/node_graphs.html b/meshview/templates/node_graphs.html index 2de94ed..90cbbe8 100644 --- a/meshview/templates/node_graphs.html +++ b/meshview/templates/node_graphs.html @@ -1,88 +1,38 @@ {% macro graph(name) %} - - {{ name }} graph - +
{% endmacro %} - - -
-
-
-
Battery
-
{{ graph("power") }}
-
-
-
ChUtil
-
{{ graph("chutil") }}
-
-
- -
-
-
Neighbor SNR
-
- - -
-
-
- -
- -
-
-
Temperature
-
{{ graph("temperature") }}
-
-
-
Humidity
-
{{ graph("humidity") }}
-
-
-
Pressure
-
{{ graph("pressure") }}
-
-
-
Indoor Air Quality
-
{{ graph("iaq") }}
-
-
-
Wind Speed
-
{{ graph("wind_speed") }}
-
-
-
Wind Direction
-
{{ graph("wind_direction") }}
-
-
- -
-
-
Power Metrics
-
{{ graph("power_metrics") }}
-
-
+ +
+ +
- + + + + +
+ {% for name in [ + "power", "chutil", "temperature", "humidity", "pressure", + "iaq", "wind_speed", "wind_direction", "power_metrics", "neighbors" + ] %} +
+ {{ graph(name) | safe }} +
+ {% endfor %} +
+ +