{# Deploy history partial #} {% if history %}
{% for deploy in history %} {% endfor %}
Status Environment Started Completed By
{% if deploy.status == "completed" %} Completed {% elif deploy.status == "failed" %} Failed {% elif deploy.status == "rolled_back" %} Rolled Back {% elif deploy.status == "deploying" %} Deploying {% else %} {{ deploy.status }} {% endif %} {{ deploy.environment }} {{ deploy.started_at }} {{ deploy.completed_at or "-" }} {{ deploy.initiated_by }}
{% else %}
No deployments recorded yet.
{% endif %}