blob: 859a23231fb28c46337360843d094302ce451bad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
{%extends "base.html"%}
{%block title%}
{{error.status_code or 500}}: {{error.description or "Generic Exception"}}
{%endblock%}
{%block pagetitle%}
{{error.status_code or 500}}: {{error.description or "Generic Exception"}}
{%endblock%}
{%block content%}
<p>The system has done something it should not! This is our fault.</p>
<p>
Please send us the details below to help us figure out what we did wrong and
fix it.
</p>
<div class="row">
<p><strong>URI: {{page}}</p>
<pre>{{"".join(trace)}}</pre>
</div>
{%endblock%}
|