blob: 374fb8624c3a7182ebbe29eb6cea12d90ff1d03d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{%extends "base.html"%}
{%block title%}HTTP Error: {{exc.code}}{%endblock%}
{%block contents%}
<h1>{{exc.code}}: {{exc.description}}</h1>
<div class="row">
<p>
You attempted to access {{request_url}} which failed with the following
error:
</p>
</div>
<div class="row">
<pre>{{"\n".join(trace)}}</pre>
</div>
{%endblock%}
|