forked from enviPath/enviPy
15 lines
359 B
HTML
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 %}
|