{% extends "admin/base.html" %} {% block title %}Overview · {{ fleet.name }} — cmdop admin{% endblock %} {% block content %} {# Plan 59 — owner / admin overview (3 rows). Owners and admins want to know "is MY fleet healthy and what's happening in it?" — not a relay-wide pro monitor. Three rows: Row 1: Fleet health strip — single-line summary card Row 2: KPI cards (3 wide) — machines / sessions / bots-24h Row 3: Bot activity chart + recent activity feed The Plan 57 system pills, LLM spend cards, llm-volume chart, and cross-fleet roll-up stay locked behind the server-admin gate. #}

Overview · {{ fleet.name }}

Signed in as {{ member_role or 'member' }}.

{# Row 1 — single condensed fleet-health strip #} {% include 'admin/components/overview/_fleet_health_strip.html' %} {# Row 2 — 3 KPI cards (no LLM spend) #} {% include 'admin/components/overview/_kpi_row_owner.html' %} {# Row 3 — bot activity + recent activity #} {% include 'admin/components/overview/_owner_activity_row.html' %} {% include 'admin/components/overview/_activity_feed.html' %} {# Row 4 — Plan 61/2b W3 — Bots health card (per-channel pills). Below existing rows so W2 cards can land above without colliding. #} {% include 'admin/components/overview/_bots_health_card.html' %}
{% endblock %}