{% from "macros/badges.html" import status_badge, outcome_badge, health_badge %} {% if rooms %}
| Room | Health Loop | Last Check | Last Action | Agent | Deps | Status |
|---|---|---|---|---|---|---|
| {{ room.name }} | {{ health_badge(room.health_loop_active) }} | {{ room.last_check[:16] if room.last_check else 'Never' }} | {{ outcome_badge(room.last_outcome) }} | {% if room.agent_active %} Active {% else %} — {% endif %} {% if room.agent_runs_24h > 0 %} ({{ room.agent_runs_24h }}) {% endif %} | {% if room.deps_health %} {% for dep in room.deps_health %} {% endfor %} {% else %} — {% endif %} | {% if room.status == 'autonomous' %} Autonomous {% elif room.status == 'degraded' %} Degraded {% else %} Manual {% endif %} |
No rooms configured.
{% endif %}