| {{ entry.run_id|truncatechars:10 }} |
{% if entry.status == "Completed" %}
{% status_bar "Completed" "success" %}
{% elif entry.status == "Running" %}
{% status_bar "Running" "primary" %}
{% elif entry.status == "Failed" %}
{% status_bar "Failed" "danger" %}
{% elif entry.status == "Canceled" %}
{% status_bar "Canceled" "warning" %}
{% else %}
{% status_bar entry.status|default:"Pending" "secondary" %}
{% endif %}
|
{{ entry.workflow_name }}
|
{{ entry.workflow_version }} |
{{ entry.queue_time|floatformat:1|default:"--" }} |
{{ entry.total_time|floatformat:1|default:"--" }} |
{{ entry.computer_system|default:"--" }} |
{% if entry.corrections %}
{{ entry.corrections|length }}
{% else %}
0
{% endif %}
|
{{ entry.created_at|date:"M. jS Y @ P T" }} |
{{ entry.started_at|date:"M. jS Y @ P T"|default:"-" }} |
{{ entry.finished_at|date:"M. jS Y @ P T"|default:"-" }} |
{{ entry.updated_at|date:"M. jS Y @ P T" }} |