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

Action Gallery

Create New Action
{% for action in actions %}
{% if action.image_path %} {{ action.name }} No Image {% else %} {{ action.name }} No Image {% endif %}
{{ action.name }}

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

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