mirror of
https://github.com/pretix/pretix.git
synced 2026-05-04 15:04:03 +00:00
12 lines
419 B
HTML
12 lines
419 B
HTML
{% extends "error.html" %}
|
|
{% load i18n %}
|
|
{% block title %}{% trans "Not found" %}{% endblock %}
|
|
{% block content %}
|
|
<i class="fa fa-meh-o big-icon"></i>
|
|
<h1>{% trans "Not found" %}</h1>
|
|
<p>{% trans "I'm afraid we could not find the the resource you requested." %}</p>
|
|
<p>{{ exception }}</p>
|
|
<p>
|
|
<a href="javascript:history.back()">{% trans "Take a step back" %}</a>
|
|
</p>
|
|
{% endblock %} |