{% extends "base.html" %} {% block content %}

{{ code }} {% if code == 400 %} {# TRANS: This is an error message for HTTP responses with a 400 status code. #} {% trans %}Bad Request{% endtrans %} {% elif code == 403 %} {# TRANS: This is an error message for HTTP responses with a 403 status code. #} {% trans %}Forbidden{% endtrans %} {% elif code == 404 %} {# TRANS: This is an error message for HTTP responses with a 404 status code. #} {% trans %}Not Found{% endtrans %} {% elif code == 500 %} {# TRANS: This is an error message for HTTP responses with a 500 status code. #} {% trans %}Internal Server Error{% endtrans %}{% trans %}Service Unavailable{% endtrans %} {% endif %}

{{ description }}

{% endblock content %}