mirror of
https://github.com/pretix/pretix.git
synced 2026-05-07 15:34:02 +00:00
Added custom error pages
This commit is contained in:
14
src/pretix/base/templates/500.html
Normal file
14
src/pretix/base/templates/500.html
Normal file
@@ -0,0 +1,14 @@
|
||||
{% 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>
|
||||
<a href="javascript:history.back()">{% trans "Take a step back" %}</a>
|
||||
· <a href="javascript:location.reload()">{% trans "Try again" %}</a>
|
||||
</p>
|
||||
{% endblock %}
|
||||
Reference in New Issue
Block a user