{% extends "layout.html" %} {% block content %}

Outfit Gallery

Create New Outfit
Batch Generating Outfits...
Starting...
Overall Batch Progress
{% for outfit in outfits %}
{% if outfit.image_path %} {{ outfit.name }} No Image {% else %} {{ outfit.name }} No Image {% endif %}
{{ outfit.name }}

{% set ns = namespace(parts=[]) %} {% if outfit.data.wardrobe is mapping %} {% for v in outfit.data.wardrobe.values() %} {% if v %}{% set ns.parts = ns.parts + [v] %}{% endif %} {% endfor %} {% endif %} {% if outfit.data.lora and outfit.data.lora.lora_triggers %} {% set ns.parts = ns.parts + [outfit.data.lora.lora_triggers] %} {% endif %} {{ ns.parts | join(', ') }}

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