mirror of
https://github.com/pretix/pretix.git
synced 2026-04-28 00:02:37 +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
27 lines
1.0 KiB
HTML
27 lines
1.0 KiB
HTML
{% extends "error.html" %}
|
|
{% load i18n %}
|
|
{% load static %}
|
|
{% block title %}{% trans "Not found" %}{% endblock %}
|
|
{% block content %}
|
|
<i class="fa fa-meh-o fa-fw big-icon"></i>
|
|
<div class="error-details">
|
|
<h1>{% trans "Not found" %}</h1>
|
|
<p>{% trans "I'm afraid we could not find the the resource you requested." %}</p>
|
|
<p>{{ exception }}</p>
|
|
<p class="links">
|
|
<a id='goback' href='#'>{% trans "Take a step back" %}</a>
|
|
</p>
|
|
{% if request.user.is_staff and not staff_session %}
|
|
<form action="{% url 'control:user.sudo' %}?next={{ request.path|urlencode }}" method="post">
|
|
<p>
|
|
{% csrf_token %}
|
|
<button type="submit" class="btn btn-default" id="button-sudo">
|
|
<i class="fa fa-id-card"></i> {% trans "Admin mode" %}
|
|
</button>
|
|
</p>
|
|
</form>
|
|
{% endif %}
|
|
<img src="{% static "pretixbase/img/pretix-logo.svg" %}" class="logo"/>
|
|
</div>
|
|
{% endblock %}
|