2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-05-02 13:28:49 +00:00

show messages in base

This commit is contained in:
Matthias 2021-10-28 11:39:28 +02:00
parent aa7b78f41d
commit 527bc4381d
No known key found for this signature in database
GPG Key ID: F50EF5741D33E076

View File

@ -92,6 +92,15 @@
</div>
<div class="container container-fluid inventree-content" id='inventree-content'>
{% if messages %}
{% for message in messages %}
<div class='{{ message.tags }}'>
{{ message|safe }}
</div>
{% endfor %}
{% endif %}
{% block content %}
<!-- Each view fills in here.. -->
{% endblock %}