{% extends "base.html" %} {% block title %}{{ network_name }} - Home{% endblock %} {% block content %}

{{ network_name }}

{% if network_city and network_country %}

{{ network_city }}, {{ network_country }}

{% endif %} {% if network_welcome_text %}

{{ network_welcome_text }}

{% else %}

Welcome to the {{ network_name }} mesh network dashboard. Monitor network activity, view connected nodes, and explore message history.

{% endif %}
Total Nodes
{{ stats.total_nodes }}
All discovered nodes
Advertisements
{{ stats.advertisements_7d }}
Last 7 days
Messages
{{ stats.messages_7d }}
Last 7 days

Network Info

{% if network_radio_config %} {% if network_radio_config.profile %}
Profile: {{ network_radio_config.profile }}
{% endif %} {% if network_radio_config.frequency %}
Frequency: {{ network_radio_config.frequency }}
{% endif %} {% if network_radio_config.spreading_factor %}
Spreading Factor: {{ network_radio_config.spreading_factor }}
{% endif %} {% if network_radio_config.bandwidth %}
Bandwidth: {{ network_radio_config.bandwidth }}
{% endif %} {% if network_radio_config.coding_rate %}
Coding Rate: {{ network_radio_config.coding_rate }}
{% endif %} {% if network_radio_config.tx_power %}
TX Power: {{ network_radio_config.tx_power }}
{% endif %} {% endif %} {% if network_location and network_location != (0.0, 0.0) %}
Location: {{ "%.4f"|format(network_location[0]) }}, {{ "%.4f"|format(network_location[1]) }}
{% endif %}

Network Activity

Advertisements received per day (last 7 days)

Contact

{% if network_contact_email %} {{ network_contact_email }} {% endif %} {% if network_contact_discord %} Discord {% endif %} {% if network_contact_github %} GitHub {% endif %} {% if not network_contact_email and not network_contact_discord and not network_contact_github %}

No contact information configured.

{% endif %}
{% endblock %} {% block extra_scripts %} {% endblock %}