{% extends "errors/dashboard/base.html" %} {# The dashboard 5xx page, shows like it is part of the application #} {% load blocktrans trans from i18n %} {% block title %} {% trans "Server error" %} {% endblock title %} {% block error_status %} 500 {% endblock error_status %} {% block error_title %} {% trans "Something went wrong" %} {% endblock error_title %} {% block error_icon_computer_name %} fa-fire fa-swap-opacity {% endblock error_icon_computer_name %} {% block error_icon_mobile_name %} fa-fire fa-swap-opacity {% endblock error_icon_mobile_name %} {% block error_icon_computer_style %} --fa-primary-color: red; --fa-secondary-color: orangered; {% endblock error_icon_computer_style %} {% block error_icon_mobile_style %} --fa-primary-color: red; --fa-secondary-color: orangered; {% endblock error_icon_mobile_style %} {% block error_content %}
{% blocktrans trimmed %} There was an unexpected error while trying to view this page. You may have encountered a bug or a temporary issue affecting our services. {% endblocktrans %}
{% endblock error_content %} {% block error_content_help %}{% url 'support' as url_support %} {% blocktrans trimmed %} Contact us if you continue to notice this error. {% endblocktrans %}
{{ block.super }} {% endblock error_content_help %}