{% extends "base.html" %} {% from "macros/icons.html" import icon_dashboard, icon_map, icon_nodes, icon_advertisements, icon_messages, icon_page, icon_info, icon_chart, icon_globe, icon_github %} {% block title %}{{ network_name }}{% endblock %} {% block content %}
{{ network_name }}

{{ 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 %}
{{ icon_nodes("h-8 w-8") }}
Total Nodes
{{ stats.total_nodes }}
All discovered nodes
{{ icon_advertisements("h-8 w-8") }}
Advertisements
{{ stats.advertisements_7d }}
Last 7 days
{{ icon_messages("h-8 w-8") }}
Messages
{{ stats.messages_7d }}
Last 7 days

{{ icon_info("h-6 w-6") }} 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.bandwidth %}
Bandwidth: {{ network_radio_config.bandwidth }}
{% endif %} {% if network_radio_config.spreading_factor %}
Spreading Factor: {{ network_radio_config.spreading_factor }}
{% 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 %}

Our local off-grid mesh network is made possible by

MeshCore

Connecting people and things, without using the internet

{{ icon_chart("h-6 w-6") }} Network Activity

Activity per day (last 7 days)

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