{% if workflow_run %}
{% set status_name = workflow_run.status.name %}
{% if status_name == 'COMPLETED' %}
{{ status_name }}
{% elif status_name == 'FAILED' %}
{{ status_name }}
{% elif status_name == 'RUNNING' %}
{{ status_name }}
{% elif status_name == 'PARTIAL' %}
{{ status_name }}
{% elif status_name == 'WAITING_FOR_USER' %}
{{ status_name }}
{% else %}
{{ status_name }}
{% endif %}
{{ workflow_display_name or workflow_run.name or 'Workflow' }}
{% else %}
IDLE
No active workflow
{% endif %}
{% if workflow_run %}
Refresh
{% endif %}
Elapsed:
--:--
{% if workflow_run and workflow_run.name == 'generate_report' and workflow_run.status.name in ('COMPLETED', 'PARTIAL') %}
Download Report
{% endif %}