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

Looks Library

Create New Look
Batch Generating Looks...
Starting...
Overall Batch Progress
{% for look in looks %}
{% if look.image_path %} {{ look.name }} No Image {% else %} {{ look.name }} No Image {% endif %}
{{ look.name }}
{% if look.character_id %}

{{ look.character_id.replace('_', ' ').title() }}

{% endif %}

{% set ns = namespace(parts=[]) %} {% if look.data.positive %}{% set ns.parts = ns.parts + [look.data.positive] %}{% endif %} {% if look.data.lora and look.data.lora.lora_triggers %} {% set ns.parts = ns.parts + [look.data.lora.lora_triggers] %} {% endif %} {{ ns.parts | join(', ') }}

{% else %}

No looks found. Add JSON files to data/looks/ or use the create-from-LoRAs button above.

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