{# WORKFLOW TAB PANEL #}
{% comment %}
Include to add icons based on status of a step.
Required Context Variables:
lower_status: The status of the step to lowercase.
Required CSS:
{% endcomment %}
{% if lower_status == 'pending' %}
{% elif lower_status == 'complete' or lower_status == 'approved' or lower_status == 'reviewed' %}
{% elif lower_status == 'error' or lower_status == 'failed' or lower_status == 'rejected' %}
{% elif lower_status == 'working' or lower_status == 'under review' or lower_status == 'changes requested' or lower_status == 'submitted' %}
{% else %}
{% endif %}