aboutsummaryrefslogtreecommitdiff
path: root/uploader/templates/unhandled_exception.html
blob: cfb0c0b73bee894bac0e5f9f09b21db8d67c1e73 (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
{%extends "base.html"%}
{%from "flash_messages.html" import flash_all_messages%}

{%block title%}System Error{%endblock%}

{%block css%}
<link rel="stylesheet" href="/static/css/two-column-with-separator.css" />
{%endblock%}

{%block contents%}
<div class="row">
  {{flash_all_messages()}}
  <h1>Exception!</h1>

  <p>An error has occured, and your request has been aborted. Please notify the
    administrator to try and get this fixed.</p>
  <p>The system has failed with the following error:</p>
</div>
<div class="row">
  <pre>
    {{trace}}
  </pre>
</div>
{%endblock%}