{% if runs %}
| ID | Workflow | Backend | Created | Progress | CPU Hours | Status | Actions |
|---|---|---|---|---|---|---|---|
| {{ run.id }} | {{ run.workflow_name }} | {{ run.backend_name }} |
|
{% if run.total_cpu_hours >= 1 %} {{ "%.1f"|format(run.total_cpu_hours) }}h {% elif run.total_cpu_hours > 0 %} {{ "%.1f"|format(run.total_cpu_hours * 60) }}m {% else %} — {% endif %} | {% if run.status.value == 'running' %} {% elif run.status.value == 'pending' %} {% elif run.status.value == 'completed' %} {% elif run.status.value == 'failed' %} {% elif run.status.value == 'cancelled' %} {% endif %} {{ run.status.value }} | View {% if run.status.value in ('completed', 'failed', 'cancelled') %} {% endif %} |
Run a workflow above to create a run.