canaille-globuzma/canaille/templates/macro/flask.html

11 lines
342 B
HTML
Raw Permalink Normal View History

2024-12-16 17:17:42 +00:00
{# Macros for Flask flash message rendering #}
2020-10-31 17:22:24 +00:00
{% macro messages() %}
{% with messages = get_flashed_messages(with_categories=true) %}
{% for category, message in messages %}
<div class="ui message {{ category }}">
{{ message }}
</div>
2020-10-31 17:22:24 +00:00
{% endfor %}
{% endwith %}
{% endmacro %}