blob: 6a74ae8d18578860e77f231bf45b2e2823bae6bb (
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>{{trace}}</pre>
</div>
{%endblock%}
|