mirror of
https://gitea.baerentsen.space/FrederikBaerentsen/BrickTracker.git
synced 2026-01-08 09:59:54 -06:00
19 lines
719 B
HTML
19 lines
719 B
HTML
{% extends 'base.html' %}
|
|
|
|
{% block title %} - Exception!{% endblock %}
|
|
|
|
{% block main %}
|
|
<div class="container">
|
|
<div class="alert alert-danger" role="alert">
|
|
<h4 class="alert-heading">Exception!</h4>
|
|
<p>A Python exception has occured.</p>
|
|
<hr>
|
|
<pre>{{name}} {% if line %}at line {{line}} of{% else %}in{% endif %} {{file}}: {{error}}</pre>
|
|
<hr>
|
|
<div class="text-end">
|
|
<a class="btn btn-danger me-1" href="{{ url_for('admin.admin', open_database=true) }}" role="button"><i class="ri-settings-4-line"></i> Administration</a>
|
|
<a class="btn btn-primary" href="{{ url_for('index.index') }}" role="button"><i class="ri-home-line"></i> Home</a>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
{% endblock %} |