mirror of
https://github.com/Hopiu/djLint.git
synced 2026-05-24 04:33:43 +00:00
11 lines
318 B
HTML
11 lines
318 B
HTML
{% if messages %}
|
|
{# Messages Container #}
|
|
<div class="container">
|
|
{% for msg in messages %}
|
|
<div class="notification {{ msg.tags }} mt-3 mb-2">
|
|
<button class="delete"></button>
|
|
{{ msg | safe }}
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|