{% extends "errors/proxito/base.html" %} {% comment %} This is the error for both 504/504 responses from AWS ALB. When we emit this status, there is a problem with our instances, our load, or a significant issue with our application code. {% endcomment %} {% load blocktrans trans from i18n %} {% block title %} {% trans "Service unavailable" %} {% endblock title %} {% block error_status %} 504 {% endblock error_status %} {% block error_title %} {{ block.super }} {% trans "Service unavailable" %} {% endblock error_title %} {% block error_content %}

{% comment %} This refers to "this site" as reader users might not know what Read the Docs is. On the application error page this mentions RTD. {% endcomment %} {% blocktrans trimmed %} We have encountered a problem and this site is currently unavailable. {% endblocktrans %}

{% endblock error_content %} {% block error_content_help %}

{% blocktrans trimmed %} Try again shortly. {% endblocktrans %}

{{ block.super }} {% endblock error_content_help %}