{% if workflows %}
| Workflow ID | Type | Status | Started | Completed | Certificate |
|---|---|---|---|---|---|
| {{ wf.id }} | {{ wf.workflow_type }} | {% if wf.status == "RUNNING" %} Running {% elif wf.status == "COMPLETED" %} Completed {% elif wf.status == "FAILED" %} Failed {% elif wf.status == "CANCELED" %} Canceled {% elif wf.status == "CONTINUED_AS_NEW" %} Continued {% elif wf.status == "TERMINATED" %} Terminated {% elif wf.status == "TIMED_OUT" %} Timed out {% else %} {{ wf.status }} {% endif %} | {{ wf.start_time|date:"Y-m-d H:i:s" }} | {% if wf.close_time %}{{ wf.close_time|date:"Y-m-d H:i:s" }}{% else %}—{% endif %} | {% if wf.status == "COMPLETED" %} View JSON {% else %} — {% endif %} |
No deletion workflows have been run for this team yet.
{% endif %}