blob: a3f260e8eaca38d404c85cc7f182a0897925019a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{% extends "base.html.j2" %}
{% block content %}
<div id="container">
<h2>Error</h2>
<p>An error occurred while processing your request.</p>
<pre>
{{ error }}
</pre>
</div>
{% endblock %}
|