{% extends "base.html" %} {% block title %}Garments Suite — Edit {{ set.name }}{% endblock %} {% block styles %} {% endblock %} {% block content %}

Edit Set

{% if errors %} {% endif %} {# ── § Core fields ── #}

Details

Cancel
{# ── § Constituents ── #}

Garments — {{ constituents|length }}

{% if constituents %}
{% for c in constituents %}
{% if c.front_image %} {{ c.garment_name }} {% else %}
{% endif %} {{ c.ordering }} {{ c.garment_name | truncate(45, true, '…') }}
{% endfor %}
{% else %}

No garments in this set yet.

{% endif %}
{# ── § Add garments ── #} {% if non_members %}

Add Garments

{% for g in non_members %} {% endfor %}
{% endif %} {# ── § Batch Edit ──────────────────────────────────────────── #} {% if constituents %}
Batch Edit All Members
{% endif %} {# ── Danger zone ── #}

Danger Zone

Delete this set and remove all garment associations. The garments themselves are not affected.

{% endblock %} {% block scripts %} {% endblock %}