mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
It triggers to many calls to our support if a self-hosted system is down where we can do nothing at all...
27 lines
958 B
HTML
27 lines
958 B
HTML
{% extends "error.html" %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
{% block title %}{% trans "Internal Server Error" %}{% endblock %}
|
|
{% block content %}
|
|
<i class="fa fa-bolt big-icon fa-fw"></i>
|
|
<div class="error-details">
|
|
<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 sentry_event_id %}
|
|
<p>
|
|
{% blocktrans trimmed %}
|
|
If you contact us, please send us the following code:
|
|
{% endblocktrans %}
|
|
<br>
|
|
{{ sentry_event_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>
|
|
</div>
|
|
{% endblock %}
|