mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-19 14:09:20 -04:00
13 lines
413 B
HTML
13 lines
413 B
HTML
|
|
{% from "components/banner.html" import banner %}
|
||
|
|
{% with messages = get_flashed_messages(with_categories=true) %}
|
||
|
|
{% if messages %}
|
||
|
|
{% for category, message in messages %}
|
||
|
|
{{ banner(
|
||
|
|
message,
|
||
|
|
'default' if category == 'default' else 'dangerous',
|
||
|
|
delete_button="Yes, delete this template" if 'delete' == category else None
|
||
|
|
)}}
|
||
|
|
{% endfor %}
|
||
|
|
{% endif %}
|
||
|
|
{% endwith %}
|