{%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%}