forked from enviPath/enviPy
14 lines
296 B
HTML
14 lines
296 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 }}
|
|
</p>
|
|
</div>
|
|
|
|
{% endblock content %}
|