{% extends "errors/base.html" %} {% load i18n %} {% block title %}{% trans "Server Error" %} | {{ block.super }}{% endblock %} {% block content %}
{% trans "A server error has occurred. Thank you for your patience." %}
{% if fserror %} {{ fserror }} {% else %} {% trans 'Exception:' %} {{ exception }} {% endif %}
{% if request.sentry.id %}{% blocktrans with ref=request.sentry.id trimmed %} If you need assistance, you may refer to this error as {{ ref }}. {% endblocktrans %}
{% endif %} {% endblock %}