mirror of
https://github.com/pretix/pretix.git
synced 2026-08-15 11:36:27 +00:00
14 lines
589 B
HTML
14 lines
589 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>
|
|
<p>{{ exception }}</p>
|
|
<p class="links">
|
|
<a href="javascript:history.back()">{% trans "Take a step back" %}</a>
|
|
· <a href="javascript:location.reload()">{% trans "Try again" %}</a>
|
|
</p>
|
|
{% endblock %} |