{% extends "layout.html" %} {% block content %}
{% if look.image_path %} {{ look.name }} {% else %} No Image Attached {% endif %}
{# Character Selector #}
Defaults to the first linked character.
{# Additional Prompts #}
Seed
0%
Selected Preview
Preview
{% set tags = look.data.tags if look.data.tags is mapping else {} %} {% if tags %}
Tags
{% if tags.origin_series %}{{ tags.origin_series }}{% endif %} {% if tags.origin_type %}{{ tags.origin_type }}{% endif %} {% if look.is_nsfw %}NSFW{% endif %} {% if look.is_favourite %}★ Favourite{% endif %}
{% endif %}

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

{% if linked_character_ids %} Linked to: {% for char_id in linked_character_ids %} {{ char_id.replace('_', ' ').title() }}{% if not loop.last %} {% endif %} {% endfor %} {% endif %}
Edit Profile
Transfer Back to Library
{# Positive prompt #} {% if look.data.positive %}
Positive Prompt

{{ look.data.positive }}

{% endif %} {# Negative prompt #} {% if look.data.negative %}
Negative Prompt

{{ look.data.negative }}

{% endif %} {# LoRA section #} {% set lora = look.data.get('lora', {}) %} {% if lora %}
LoRA
{% for key, value in lora.items() %} {% set is_default = look.default_fields is not none and ('lora::' ~ key) in look.default_fields %}
{{ key.replace('_', ' ') }} {% if is_default %}DEF{% endif %}
{{ value if value else '--' }}
{% endfor %}
{% endif %}
{# /settings-pane #} {% set sg_has_lora = look.data.get('lora', {}).get('lora_name', '') != '' %} {% if sg_has_lora %}
{% set sg_entity = look %} {% set sg_category = 'looks' %} {% include 'partials/strengths_gallery.html' %}
{% endif %}
{# /tab-content #}
{% endblock %} {% block scripts %} {% endblock %}