forked from CGM_Public/pretix_original
24 lines
827 B
HTML
24 lines
827 B
HTML
{% extends "error.html" %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Internal Server Error" %}{% endblock %}
|
|
{% block content %}
|
|
<i class="fa fa-bolt big-icon"></i>
|
|
<h1>{% trans "Internal Server Error" %}</h1>
|
|
<p>{% trans "We had trouble processing your request." %}</p>
|
|
<p>{% trans "If this problem persists, please contact us." %}</p>
|
|
{% if request.sentry.id %}
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
If you contact us, please send us the following code:
|
|
{% endblocktrans %}
|
|
<br>
|
|
{{ request.sentry.id }}
|
|
</p>
|
|
{% endif %}
|
|
<p>{{ exception }}</p>
|
|
<p class="links">
|
|
<a id='goback' href='#'>{% trans "Take a step back" %}</a>
|
|
· <a id='reload' href='#'>{% trans "Try again" %}</a>
|
|
</p>
|
|
{% endblock %}
|