{% if notifications|length > 0 %}
{% set ns = namespace(show_dismiss_all=false) %}
{% for notification in notifications %}
{{ helpers.make_notification_title(notification)|safe }}
{{ helpers.transform_notification_message(notification["msg"])|safe }}
{% if notification["severity"] == "restart" %}
{% else %}
{% set ns.show_dismiss_all = True %}
×
{% endif %}
{% endfor %}
{% else %}
{% trans %}No new messages.{% endtrans %}
{% endif %}