forked from CGM_Public/pretix_original
* remove javascript URIs for CSP #155 * remove javascript URIs for CSP Issue 155 Combining js error handling files.
15 lines
563 B
HTML
15 lines
563 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 id='goback' href='#'>{% trans "Take a step back" %}</a>
|
|
· <a id='reload' href='#'>{% trans "Try again" %}</a>
|
|
</p>
|
|
{% endblock %}
|