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

Character Gallery

Batch Generating...
0%

{% for char in characters %}
{% if char.image_path %} {{ char.name }} No Image {% else %} {{ char.name }} No Image {% endif %}
{{ char.name }}

{{ char.data.tags | join(', ') }}

{% if char.data.lora.lora_name %} {% set lora_name = char.data.lora.lora_name.split('/')[-1].replace('.safetensors', '') %} {% endif %}
{% endfor %}
{% endblock %} {% block scripts %} {% endblock %}