mirror of
https://github.com/pretix/pretix.git
synced 2026-08-18 12:06:26 +00:00
15 lines
495 B
HTML
15 lines
495 B
HTML
{% extends "error.html" %}
|
|
{% load i18n %}
|
|
{% 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>
|
|
</div>
|
|
{% endblock %}
|