{% extends "admin/base.html" %} {% block title %}Overview · {{ fleet.name }} — cmdop admin{% endblock %} {% block content %} {# Plan 59 — member overview (2 rows). Members rarely need a "dashboard" — they want to GET STUFF DONE. So this view is action-oriented: Row 1: Welcome card — "Hello, " + fleet/role context Row 2: Two columns — Your machines (left) + Quick actions (right) No system pills, no LLM spend, no errors feed (errors are owner/admin territory), no fleets-summary. Progressive disclosure: the member can navigate to richer pages by clicking; the overview itself stays bare. #}
{# Row 1 — welcome #} {% include 'admin/components/overview/_welcome_card.html' %} {# Row 2 — machines + quick actions #}
{% include 'admin/components/overview/_your_machines.html' %}
{% include 'admin/components/overview/_quick_actions.html' %}
{% endblock %}