{% load i18n sizeformat %}
{% trans "Name" %}
{{ stack.stack_name }}
{% trans "ID" %}
{{ stack.id }}
{% trans "Description" %}
{{ stack.description }}

{% trans "Status" %}


{% trans "Created" %}
{{ stack.creation_time|parse_isotime|timesince_or_never }}
{% trans "Last Updated" %}
{{ stack.updated_time|parse_isotime|timesince_or_never }}
{% trans "Status" %}
{% blocktrans with stack_status_title=stack.stack_status|title stack_status_reason=stack.stack_status_reason %}{{ stack_status_title }}: {{ stack_status_reason }}{% endblocktrans %}

{% trans "Outputs" %}


{% for output in stack.outputs %}
{{ output.output_key }}
{{ output.description }}
{{ output.output_value|stack_output }}
{% endfor %}

{% trans "Stack Parameters" %}


{% for key, value in stack.parameters.items %}
{{ key }}
{{ value }}
{% endfor %}

{% trans "Launch Parameters" %}


{% trans "Timeout" %}
{{ stack.timeout_mins }} {% trans "Minutes" %}
{% trans "Rollback" %}
{% if stack.disable_rollback %}{% trans "Disabled" %}{% else %}{% trans "Enabled" %}{% endif %}