{% extends "base.html" %} {% from '_macros/carousel.html' import carousel with context %} {% block title %}Garments Suite — {{ set.name }}{% endblock %} {% block styles %} {% endblock %} {% block content %}

{% if set.colour and set.hue is not none %} {% endif %} {{ set.name }}

Edit ✎
{{ set.classification }} {% if set.colour %} · {{ set.colour }} {% endif %} · {{ constituents|length }} garment{{ 's' if constituents|length != 1 }}
{# ── Image carousel ── #} {% if images %} {% else %} {% endif %} {# ── Constituent garment cards ── #} {% if constituents %}

Garments — {{ constituents|length }}

{% for c in constituents %}
{% if c.front_image %} {{ c.garment_name }} {% else %}
No image
{% endif %}
{{ c.ordering }}
{{ c.garment_name | truncate(36, true, '…') }}
{{ c.classification }}
{% endfor %}
{% endif %}
{% endblock %}