{% extends "layout.html" %} {% block content %} {% macro selection_checkbox(section, key, label, value) %} {% endmacro %}
{% if style.image_path %} {{ style.name }} {% else %}
No Image Attached
{% endif %}

{# Character Selector #}
0%
{% if preview_image %}
Latest Preview
Preview
{% else %}
Latest Preview
Preview
{% endif %}

{{ style.name }}

Edit Style |
Back to Gallery
{# Style definition section #} {% set sdata = style.data.get('style', {}) %}
Style Definition
{{ selection_checkbox('style', 'artist_name', 'Artist Name', sdata.get('artist_name')) }} Artist Name
by {{ sdata.get('artist_name') if sdata.get('artist_name') else '--' }}
{{ selection_checkbox('style', 'artistic_style', 'Artistic Style', sdata.get('artistic_style')) }} Artistic Style
{{ sdata.get('artistic_style') if sdata.get('artistic_style') else '--' }}
{# Character Identity/Wardrobe context when character is selected #}
When a character is selected, their identity and active wardrobe fields will be automatically included.
{# LoRA section #} {% set lora = style.data.get('lora', {}) %}
LoRA Integration
LoRA Name
{{ lora.get('lora_name') if lora.get('lora_name') else '--' }}
Weight
{{ lora.get('lora_weight', 1.0) }}
Triggers
{{ lora.get('lora_triggers') if lora.get('lora_triggers') else '--' }}
{% endblock %} {% block scripts %} {% endblock %}