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

Sets

{{ sets|length }} set{{ 's' if sets|length != 1 }}
{# ── Inline new set form ── #} {# ── Set grid ── #} {% if not sets %}

No sets yet.

{% else %}
{% for s in sets %}
{% if s.hero_image %} {{ s.name }} {% else %} {{ s.classification }} {% endif %} {% if s.colour and s.hue is not none %}
{% endif %}
{{ s.name }}
{% if s.colour and s.hue is not none %} {% endif %} {{ s.classification }} · {{ s.owned_count }} garment{{ 's' if s.owned_count != 1 }}
{% endfor %}
{% endif %} {% endblock %} {% block scripts %} {% endblock %}