{% extends "base.html" %} {% from "macros/summary.html" import summary_stat %} {% set active_page = 'lobby' %} {% block title %}Lobby — Maude Front Desk{% endblock %} {% block content %}

Maude

Command Center
{# Zone A — Fleet Summary Bar #}
{{ summary_stat(total_rooms, 'Total Rooms') }} {{ summary_stat(autonomous_count, 'Autonomous', 'ok') }} {{ summary_stat(degraded_count, 'Degraded', 'warn') }} {{ summary_stat(manual_count, 'Manual', 'quiet') }}
{# Zone B — Room Grid #}
{% include "fragments/room_cards.html" %}
{# Zone C — Chat #}
{% include "fragments/chat.html" %}
{% endblock %}