{% extends "base.html" %} {% block css %} /* Styles for the node info card */ #node_info { height: 100%; } /* Styles for the map */ #map { height: 100%; min-height: 400px; } /* Styles for packet details section */ #packet_details { height: 95vh; overflow: scroll; top: 3em; } /* Ensure inline display for details */ div.tab-pane > dl { display: inline-block; } /* Set the maximum width of the page to 900px */ .container { max-width: 900px; margin: 0 auto; /* Center the content horizontally */ } {% endblock %} {% block body %}
{% if node %}
{{node.short_name}}

{{node.long_name}}

{% if trace %}
{% endif %}
NodeID
{{node.node_id|node_id_to_hex}}
Channel
{{node.channel}}
HW Model
{{node.hw_model}}
Role
{{node.role}}
{% if node.firmware %}
Firmware
{{node.firmware}}
{% endif %}
Get node traffic totals {% include "node_graphs.html" %}
{% else %}
A NodeInfo has not been seen.
{% endif %}
{% include 'packet_list.html' %}
{% if trace %} {% endif %} {% endblock %}