webcron/templates/flashes.html.twig

9 lines
370 B
Twig
Raw Normal View History

2021-04-09 15:14:35 +02:00
{% if flashes is defined and flashes is not empty %}
{% for flash in flashes %}
<div class="alert alert-{{ flash.category }} alert-dismissible fade show" role="alert">
{{ flash.content }}
2021-07-20 18:54:07 +02:00
<button type="button" class="btn-close" data-dismiss="alert" aria-label="Close">
2021-04-12 12:23:50 +02:00
</button>
2021-04-09 15:14:35 +02:00
</div>
{% endfor %}
{% endif %}