{% extends "frontend/base.html" %} {% load i18n static pprint_filters %} {% block html_title %} {% block page_title %} {{ instance.name }} {% endblock page_title %} {% endblock html_title %} {% block page_title_extra %}
{% translate "Type" %} | {% translate "Status" %} | {% translate "Last Transition Time" %} | {% translate "Reason" %} | {% translate "Message" %} |
---|---|---|---|---|
{{ condition.type }} | {% if condition.status == "True" %} True {% elif condition.status == "False" %} False {% else %} {{ condition.status }} {% endif %} | {{ condition.lastTransitionTime|date:"SHORT_DATETIME_FORMAT" }} | {{ condition.reason|default:"-" }} | {{ condition.message|truncatewords:20|default:"-" }} |
{{ field.value|pprint }}{% else %} {{ field.value|default:"-" }} {% endif %}
{{ field.value|pprint }}{% else %} {{ field.value|default:"-" }} {% endif %}
{% translate "No specification details to display." %}
{% endfor %}{% translate "Name" %} | {% translate "Value" %} |
---|---|
{{ key }} |
{% if key == "error" %}
{{ value }}
{% else %}
{{ value }}
{% endif %}
|