mail/app/templates/admin/_flash.html
deeily 5024bf9a8d init: full mail stack — phases 0..8 (web client, admin, IMAP/SMTP,
sieve, search, sessions, dramatiq, deploy/install, ELK, monitoring)
2026-04-29 16:30:43 +03:00

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 %}