{% if status == "running" %}
{% if compact %}
Running
{% else %}
Running
{% endif %}
{% elif status == "success" %}
{% if compact %}
Success
{% else %}
Success
{% endif %}
{% elif status == "failure" %}
{% if compact %}
Failure
{% else %}
Failure
{% endif %}
{% elif status == "queued" %}
{% if compact %}
Queued
{% else %}
Queued
{% endif %}
{% elif status == "stopped" %}
{% if compact %}
Stopped
{% else %}
Stopped
{% endif %}
{% elif status == "stale" %}
{% if compact %}
Stale
{% else %}
Stale
{% endif %}
{% else %}
{% if compact %}
Unknown
{% else %}
Unknown
{% endif %}
{% endif %}