2023-10-06 23:29:22 +01:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
2024-04-16 22:01:16 +01:00
|
|
|
{% block title %}Agenda error - Edward Betts{% endblock %}
|
|
|
|
|
2023-10-06 23:29:22 +01:00
|
|
|
{% block style %}
|
|
|
|
<link rel="stylesheet" href="{{url_for('static', filename='css/exception.css')}}" />
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
<div class="p-2">
|
|
|
|
|
|
|
|
<h1>Software error: {{ exception_type }}</h1>
|
|
|
|
<div>
|
|
|
|
<pre>{{ exception }}</pre>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<h2 class="traceback">Traceback <em>(most recent call last)</em></h2>
|
|
|
|
{{ summary | safe }}
|
|
|
|
|
|
|
|
<p>Error in function "{{ last_frame.f_code.co_name }}": {{ last_frame_args | pprint }}</p>
|
|
|
|
<pre>{{ last_frame.f_locals | pprint }}</pre>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% endblock %}
|