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

Network Overview

{% if api_error %}
Could not fetch data from API: {{ api_error }}
{% endif %}
Total Nodes
{{ stats.total_nodes }}
All discovered nodes
Advertisements
{{ stats.advertisements_24h }}
Received in last 24 hours
Total Messages
{{ stats.total_messages }}
All time
Messages Today
{{ stats.messages_today }}
Last 24 hours

Recent Advertisements

{% if stats.recent_advertisements %}
{% for ad in stats.recent_advertisements %} {% endfor %}
Node Received
{{ ad.friendly_name or ad.name or ad.public_key[:12] + '...' }}
{% if ad.friendly_name or ad.name %}
{{ ad.public_key[:12] }}...
{% endif %}
{{ ad.received_at.split('T')[1][:8] if ad.received_at else '-' }}
{% else %}

No advertisements recorded yet.

{% endif %}

Channel Messages

{% if stats.channel_message_counts %}
{% for channel, count in stats.channel_message_counts.items() %} {% endfor %}
Channel Count
Channel {{ channel }} {{ count }}
{% else %}

No channel messages recorded yet.

{% endif %}
Browse Nodes View Messages View Map
{% endblock %}