diff --git a/meshview/templates/top.html b/meshview/templates/top.html index 5d810af..8e37faf 100644 --- a/meshview/templates/top.html +++ b/meshview/templates/top.html @@ -2,67 +2,80 @@ {% block css %} {% endblock %} @@ -70,71 +83,107 @@ h1 { {% block body %}

Top Traffic Nodes

- - - -
-

This chart shows a bell curve (normal distribution) based on the total "Times Seen" values for all nodes. It helps visualize how frequently nodes are heard, relative to the average.

-

This "Time Seen" value is the closest that we can get to Mesh utilization by node.

-

Mean: - Standard Deviation:

+

This chart shows a bell curve (normal distribution) based on the total "Times Seen" values for all nodes. It helps visualize how frequently nodes are heard, relative to the average.

+

This "Times Seen" value is the closest that we can get to Mesh utilization by node.

+

Mean: - Standard Deviation:

+ + +
{% if nodes %} -
- - - - - - - - - - - - {% for node in nodes %} - - - - - - - - {% endfor %} - -
Long NameShort NameChannelPackets SentTimes Seen
{{ node.long_name }}{{ node.short_name }}{{ node.channel }}{{ node.total_packets_sent }}{{ node.total_times_seen }}
-
+
+ + + + + + + + + + + + +
Long NameShort NameChannelPackets SentTimes SeenSeen % of Mean
+
{% else %} -

No top traffic nodes available.

+

No top traffic nodes available.

{% endif %} {% endblock %}