Files
enviPy-bayer/templates/errors/error.html
2025-07-24 09:57:50 +12:00

15 lines
359 B
HTML

{% extends "framework.html" %}
{% load static %}
{% block content %}
<div class="alert alert-danger" role="alert">
<h4 class="alert-heading">{{ error_message }}</h4>
<hr>
<p class="mb-0">
{{ error_detail }}<br>
The error was logged and will be investigated.
</p>
</div>
{% endblock content %}