{# --- Aggregate Stats --- #}
{% if agent_count == 0 %} No agents registered {% else %} {% if active_count %} {{ active_count }} active {% endif %} {% if idle_count %} {{ idle_count }} idle {% endif %} {% if dead_count %} {{ dead_count }} dead {% endif %} {% endif %}
{# --- Send Message Form --- #} {% if agents %}

Send message

{# Drop overlay #}
{# Staged attachments preview #}
{% endif %} {# --- Recent Messages --- #} {% if messages %}

Messages

{% for msg in messages %}
{% if msg.priority == 'urgent' %} ! {% endif %} {{ msg.from_agent }} → {{ msg.to_agent }}
{{ msg.body[:200] }} {% if msg.attachments %} {% endif %}
{{ msg.created_at[11:16] }} {% if msg.read_at %} {% endif %}
{% endfor %}
{% endif %} {# --- Empty state when agents exist but no messages --- #} {% if agents and not messages %}

No messages yet

{% endif %}