forked from rebillar/site-accueil-insa
9 lines
333 B
Twig
9 lines
333 B
Twig
<div id="notificationContainer">
|
|
{% if notifications|length %}
|
|
{% for notificationId, n in notifications %}
|
|
|
|
{{ n.message|notification({'id': notificationId, 'type': n.type, 'title': n.title, 'noclear': n.hasNoClear, 'context': n.context, 'raw': n.raw}, false) }}
|
|
|
|
{% endfor %}
|
|
{% endif %}
|
|
</div>
|