{% extends "infrastructure/overview/deployment_base.html" %} {% load i18n %} {% load url from future%} {% load horizon %} {% block deployment-icon %} {% endblock %} {% block deployment-title %} {% if stack.is_deleting %} {% trans "Undeploying..." %} {% elif stack.is_deploying %} {% trans "Deploying..." %} {% endif %} {% endblock %} {% block deployment-info %} {% if progress %}
{{ progress }}% {% trans "Complete" %}
{% endif %}
{% if last_failed_events %} {% trans "Last failed events:" %} {% for event in last_failed_events %}
{% trans "Timestamp" %}
{% trans "Resource Name" %}
{{ event.resource_name }}
{% trans "Status" %}
{{ event.resource_status }}
{% trans "Reason" %}
{{ event.resource_status_reason }}
{% endfor %} {% endif %}

See full log

{% endblock %} {% block deployment-buttons %} {% if stack.is_deploying %} {% trans "Stop" %} {% endif %} {% endblock %} {% block templates %} {% endblock %}