{% extends "sentry/layout.html" %} {% load i18n %} {% block title %}{% trans "Internal Server Error" %} | {{ block.super }}{% endblock %} {% block bodyclass %}{% endblock %} {% block page_header %}

{% trans "Internal Server Error" %}

{% endblock %} {% block content %}

{% trans "There was an internal server error while processing your request." %}

{% if request.sentry.id %}

{% blocktrans with request.sentry.id as id %}You may reference this error as {{ id }}.{% endblocktrans %}

{% if request.sentry.project_id %}

View this error in Sentry

{% endif %} {% endif %}
{% endblock %}