{% set notificationIcons = { 'info': { 'class': 'fas fa-info-circle', 'color': 'alert-info' }, 'warning': { 'class': 'fas fa-exclamation-circle', 'color': 'alert-warning' }, 'urgent': { 'class': 'fas fa-exclamation-triangle', 'color': 'alert-danger' } } %} {% set notifications = notifications(app.user) %} {% if notifications|length > 0 %} {% for notification in notifications %}
{% endfor %} {% endif %}