mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-09 13:49:50 -04:00
15 lines
376 B
HTML
15 lines
376 B
HTML
|
|
{% from "components/banner.html" import banner_wrapper %}
|
||
|
|
|
||
|
|
{% call banner_wrapper(type='dangerous') %}
|
||
|
|
{% if message is string %}
|
||
|
|
<h1 class="banner-title">{{ message }}</h1>
|
||
|
|
{% else %}
|
||
|
|
<h1 class="banner-title">{{ message.title }}</h1>
|
||
|
|
{% if message.detail %}
|
||
|
|
<p>
|
||
|
|
{{ message.detail | safe }}
|
||
|
|
</p>
|
||
|
|
{% endif %}
|
||
|
|
{% endif %}
|
||
|
|
{% endcall %}
|