88091936c5
The page-top chrome was inconsistent: most nested views used the breadcrumb
kicker + page-title pattern, but plugin sub-pages used ad-hoc "← back" links,
~11 pages stacked a breadcrumb AND a redundant ancestor back button, and two
(monitors/edit, hosts/uptime) had a back button but no breadcrumb. The
settings/plugin_detail page stacked all of it at once.
Unify on the breadcrumb-led model:
- settings/_tabs.html: drop the hardcoded "Settings" h1; the breadcrumb
("Settings › …") plus the tab strip is the header.
- settings/plugin_detail: drop the "← Plugins" back button.
- docker container_detail/swarm/disk + snmp/device: replace ad-hoc back links
with the standard crumbs() breadcrumb.
- host_agent, ansible/*, alerts/maintenance: remove redundant ancestor back
buttons (the breadcrumb's parent crumbs already link there); keep lateral
shortcuts (Inventory/Schedules/Browse/Targets/Groups/New).
- monitors/edit, hosts/uptime: add the missing breadcrumb, drop the back link.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_016Jg27rgypiW2efULXJDtMC
52 lines
2.4 KiB
HTML
52 lines
2.4 KiB
HTML
{% extends "base.html" %}
|
|
{% from "_macros.html" import crumbs %}
|
|
{% block title %}Group: {{ group.name }} — Steward{% endblock %}
|
|
{% block breadcrumb %}{{ crumbs([("Ansible", "/ansible/"), ("Inventory", "/ansible/inventory/targets"), ("Groups", "/ansible/inventory/groups"), (group.name, "")]) }}{% endblock %}
|
|
{% block content %}
|
|
<div style="display:flex;align-items:center;justify-content:space-between;margin-bottom:1.5rem;">
|
|
<h1 class="page-title" style="margin-bottom:0;">Group: {{ group.name }}</h1>
|
|
</div>
|
|
|
|
<form method="post" action="/ansible/inventory/groups/{{ group.id }}">
|
|
<div class="card" style="margin-bottom:1.5rem;">
|
|
<h3 class="section-title">Settings</h3>
|
|
<div class="form-group">
|
|
<label>Name</label>
|
|
<input type="text" name="name" value="{{ group.name }}" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label>
|
|
Group Variables
|
|
<span style="color:var(--text-muted);font-weight:normal;font-size:0.82rem;">
|
|
(YAML — applied to all members; per-target vars override these)
|
|
</span>
|
|
</label>
|
|
<textarea name="ansible_vars" rows="8"
|
|
style="width:100%;font-family:ui-monospace,monospace;font-size:0.85rem;"
|
|
placeholder="ansible_user: deploy http_port: 80">{{ ansible_vars_yaml }}</textarea>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card" style="margin-bottom:1.5rem;">
|
|
<h3 class="section-title">Members</h3>
|
|
{% if not all_targets %}
|
|
<p style="color:var(--text-muted);font-size:0.9rem;">No targets exist yet.
|
|
<a href="/ansible/inventory/targets">Add targets</a> first.</p>
|
|
{% else %}
|
|
<div style="display:grid;gap:0.4rem;margin-bottom:1rem;">
|
|
{% for tgt in all_targets %}
|
|
<label style="display:flex;align-items:center;gap:0.6rem;font-weight:normal;cursor:pointer;">
|
|
<input type="checkbox" name="target_ids" value="{{ tgt.id }}"
|
|
{% if tgt.id in member_ids %}checked{% endif %}>
|
|
<span>{{ tgt.name }}</span>
|
|
<span style="color:var(--text-muted);font-size:0.82rem;">{{ tgt.address }}</span>
|
|
</label>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<button type="submit" class="btn">Save Changes</button>
|
|
</form>
|
|
{% endblock %}
|