{% extends "admin/base.html" %} {% block title %}Add new machine — cmdop admin{% endblock %} {% block content %} {% from 'admin/components/ui.html' import page_header, card, button, empty_state, badge, tooltip %}
{% if member_role == 'member' %} {{ page_header( title='Add new machine', subtitle='Enroll a new host on the cmdop agent network.', eyebrow='Wizard', ) }} {% call card(kind='roomy') %} {{ empty_state( title='Ask an owner to add a machine', description='Adding machines is restricted to fleet owners and admins. Ping your fleet owner; they can run this wizard and share the install command with you.', icon='shield-alert', action_label='Back to machines', action_href='/admin/machines', ) }} {% endcall %} {% else %} {% endif %}
{% if member_role != 'member' %} {% endif %} {% endblock %}