mirror of
https://github.com/pretix/pretix.git
synced 2026-05-06 15:24:02 +00:00
* Upgrade django and stuff * Update to Django 2.2 and recent versions of similar packages * Provide explicit orderings to all models used in paginated queries * Resolve naive datetime warnings in test suite * Deal with deprecation warnings * Fix sqlparse version
18 lines
649 B
HTML
18 lines
649 B
HTML
{% extends "error.html" %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
{% block title %}{% trans "Bad Request" %}{% endblock %}
|
|
{% block content %}
|
|
<i class="fa fa-frown-o fa-fw big-icon"></i>
|
|
<div class="error-details">
|
|
<h1>{% trans "Bad Request" %}</h1>
|
|
<p>{% trans "We were unable to parse your request." %}</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>
|
|
<img src="{% static "pretixbase/img/pretix-logo.svg" %}" class="logo"/>
|
|
</div>
|
|
{% endblock %}
|