10 lines
253 B
HTML
10 lines
253 B
HTML
{% with msgs = get_flashed_messages(with_categories=true) %}
|
|
{% if msgs %}
|
|
<div class="flash-stack">
|
|
{% for cat, m in msgs %}
|
|
<div class="flash flash-{{ cat }}">{{ m }}</div>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
{% endwith %}
|