{% extends "layout.html" %} {% block content %}
{% if outfit.image_path %} {{ outfit.name }} {% else %} No Image Attached {% endif %}
{# Character Selector #}
Select a character to preview this outfit on their model.
{# Additional Prompts #}
Seed
0%
Selected Preview
Preview
{% set tags = outfit.data.tags if outfit.data.tags is mapping else {} %} {% if tags %}
Tags
{% if tags.outfit_type %}{{ tags.outfit_type }}{% endif %} {% if outfit.is_nsfw %}NSFW{% endif %} {% if outfit.is_favourite %}★ Favourite{% endif %}
{% endif %}

{{ outfit.name }} {% if outfit.is_nsfw %}NSFW{% endif %}

Edit Profile
Transfer Back to Library
{% if linked_characters %}
Assigned to Characters
{% for char in linked_characters %} {{ char.name }} {% endfor %}
{% endif %}
{# Wardrobe section #} {% set wardrobe = outfit.data.get('wardrobe', {}) %}
Wardrobe
{% for key, value in wardrobe.items() %} {% set is_default = outfit.default_fields is not none and ('wardrobe::' ~ key) in outfit.default_fields %}
{{ key.replace('_', ' ') }} {% if is_default %}DEF{% endif %}
{{ value if value else '--' }}
{% endfor %}
{# LoRA section #} {% set lora = outfit.data.get('lora', {}) %} {% if lora %}
LoRA
{% for key, value in lora.items() %} {% set is_default = outfit.default_fields is not none and ('lora::' ~ key) in outfit.default_fields %}
{{ key.replace('_', ' ') }} {% if is_default %}DEF{% endif %}
{{ value if value else '--' }}
{% endfor %}
{% endif %}
{{ existing_previews|length }} preview(s)
{% set sg_has_lora = outfit.data.get('lora', {}).get('lora_name', '') != '' %} {% if sg_has_lora %}
{% set sg_entity = outfit %} {% set sg_category = 'outfits' %} {% include 'partials/strengths_gallery.html' %}
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}