{% extends "base.html" %} {% import "macros/ui.html" as m %} {% block title %}{{ ws_name }} — Actions{% endblock %} {% block nav_workspaces %}btn-active{% endblock %} {% block content %} {{ m::ws_tabs(ws_name=ws_name, active=ws_active_tab, ws_envs=ws_envs, ws_has_clusters=ws_has_clusters, ws_has_workflows=ws_has_workflows, current_env=current_env) }}

Actions {{ ws_name }}

Orchestrator jobs matching {{ ws_name }}.

Run Mode
{% if jobs %}
{% for job in jobs %} {% endfor %}
ID Name Status Created Started Completed
{{ job.id | truncate(length=12, end="…") }} {{ job.name }} {% if job.status == "Running" %} running {% elif job.status == "Completed" %} done {% elif job.status == "Failed" %} failed {% elif job.status == "Cancelled" %} cancelled {% else %} {{ job.status | lower }} {% endif %} {{ job.created_at }} {% if job.started_at %}{{ job.started_at }}{% else %}—{% endif %} {% if job.completed_at %}{{ job.completed_at }}{% else %}—{% endif %}
{% else %}
No actions found for {{ ws_name }}.
{% endif %} {% endblock %}