agenda/templates/show_error.html

26 lines
587 B
HTML
Raw Normal View History

2023-10-06 23:29:22 +01:00
{% extends "base.html" %}
{% 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 %}