{% 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%
Selected Preview
Preview

{{ style.name }}

Edit Style |
Back to Library
{# 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 '--' }}
{{ existing_previews|length }} preview(s)
{% set sg_entity = style %} {% set sg_category = 'styles' %} {% set sg_has_lora = style.data.get('lora', {}).get('lora_name', '') != '' %} {% include 'partials/strengths_gallery.html' %} {% endblock %} {% block scripts %} {% endblock %}