{% if workflows %} {% for wf in workflows %} {% endfor %}
Workflow ID Source Status Started Completed
{{ wf.id }} {{ wf.source }} {% 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 %}
{% else %}

No health check workflows have been run yet.

{% endif %}