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

{{ network_name }}

{% if network_city and network_country %}

{{ network_city }}, {{ network_country }}

{% endif %}

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

Network Info

{% if network_radio_config %}
Radio Config: {{ network_radio_config }}
{% endif %} {% if network_location and network_location != (0.0, 0.0) %}
Location: {{ "%.4f"|format(network_location[0]) }}, {{ "%.4f"|format(network_location[1]) }}
{% endif %}

Contact

{% if network_contact_email %} {{ network_contact_email }} {% endif %} {% if network_contact_discord %}
{{ network_contact_discord }}
{% endif %} {% if not network_contact_email and not network_contact_discord %}

No contact information configured.

{% endif %}
{% endblock %}