{% extends "base.html" %} {% block title %}Workflows{% endblock %} {% block content %}

Workflows

{{ workflows|length }} registered. {% if allow_run %} Click Run to execute one. Output streams below. {% else %} Read-only mode — restart with attune ops --allow-run to run from the dashboard. {% endif %}

{% if workflows %} {% if allow_run %}{% endif %} {% for w in workflows %} {% if allow_run %} {% endif %} {% endfor %}
Name Stages Tier map DescriptionAction
{{ w.name }} {{ w.stages }} {% for stage, tier in w.tier_map.items() %} {{ stage }}: {{ tier }} {% endfor %} {{ w.description }}
{% else %}

No workflows are visible. Make sure attune-ai is installed in the same venv as attune-ops.

{% endif %} {% endblock %} {% block scripts %} {% if allow_run %} {% endif %} {% endblock %}