{% extends "base.html" %} {% block head %} {% endblock %} {% block css %} #node_info { height:100%; } #map{ height:100%; min-height: 400px; } #packet_details{ height: 95vh; overflow: scroll; top: 3em; } {% endblock %} {% block body %} {% include "search_form.html" %}
{% if node %}
{{node.long_name}} ({{node.node_id|node_id_to_hex}})
short name
{{node.short_name}}
hw model
{{node.hw_model}}
{% if has_telemetry %} {% endif %} {% if neighbors %} {% endif %}
{% else %}
A NodeInfo has not been seen.
{% endif %}
{% include "buttons.html" %}
{% include 'packet_list.html' %}
{% if trace %} {% endif %} {% endblock %}