{% extends "infrastructure/overview/deployment_base.html" %} {% load i18n %} {% load url from future%} {% block deployment-icon %} {% endblock %} {% block deployment-title %} {% if stack.is_delete_failed %} {% trans "Undeploying failed" %} {% elif stack.is_failed %} {% trans "Deployment failed" %} {% else %} {% trans "Failure" %} {% endif %} {% endblock %} {% block deployment-info %} {% 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 %} {{ block.super }} {% endblock %}