{% load i18n %} {% if has_status_result %} {% translate "Red endpoints" as translated_header_red %} {% translate "Red endpoints have a good chance of not responding at all or being completely unavailable." as translated_header_red_explanation %} {% include 'esistatus/partials/endpoints.html' with title=translated_header_red status="red" explanation=translated_header_red_explanation data=esi_endpoint_status.red with_details=True %} {% translate "Yellow endpoints" as translated_header_yellow %} {% translate "Yellow endpoints have a good chance of being slow or returning errors." as translated_header_yellow_explanation %} {% include 'esistatus/partials/endpoints.html' with title=translated_header_yellow status="yellow" explanation=translated_header_yellow_explanation data=esi_endpoint_status.yellow with_details=True %} {% translate "Green endpoints" as translated_header_green %} {% translate "Green endpoints are responding as expected." as translated_header_green_explanation %} {% include 'esistatus/partials/endpoints.html' with title=translated_header_green status="green" explanation=translated_header_green_explanation data=esi_endpoint_status.green with_details=True %} {% else %}

{% translate "Couldn't read the ESI status." %} {% if esi_endpoint_status %} {% translate "Error Message" %}: {{ esi_endpoint_status }} {% endif %}

{% endif %}