{% if notifications | length > 0 %} {% set types = ['warning', 'danger', 'info'] %} {% for notification in notifications %}
{% if notification.type in types %} {{notification.titre}} {% else %}
{{notification.titre}}
{% endif %} {{notification.message}} {{notification.createdAt | date('d/m/Y à H:i')}}
{% if notification.action == "url" %}
{% endif %}
{% endfor %} {% else %}
Aucune notification
{% endif %}