{% extends "admin/base.html" %} {% block title %}Fleets — cmdop admin{% endblock %} {% block content %} {% from 'admin/components/ui.html' import card, input, badge, empty_state, pagination, page_header %} {% set _fleet_actions = [ {'label': 'Refresh', 'kind': 'secondary', 'icon': 'refresh-cw', 'attrs': '@click="load()"'}, ] %} {% if user.is_server_admin %} {% set _fleet_actions = _fleet_actions + [ {'label': 'New fleet', 'kind': 'primary', 'icon': 'plus', 'attrs': '@click="openModal()"'}, ] %} {% endif %}
{{ page_header('Fleets', 'Switch between fleets or create a new one.', help_anchor='fleets', actions=_fleet_actions) }} {% call card() %}
Loading fleets…

Couldn't load fleets.

No fleets yet

{% if user.is_server_admin %} Click + New fleet to create your first one. {% else %} Ask a server admin to add you to a fleet. {% endif %}

{{ pagination('pagination', per_page_options=[10, 25, 50]) }} {% endcall %}
{% endblock %}