{# Notification list items -- HTMX partial #} {% if notifications %} {% for n in notifications %}
{% if n.variant == "error" %} {% elif n.variant == "warning" %} {% elif n.variant == "success" %} {% else %} {% endif %}
{% if n.link %} {{ n.title }} {% else %}
{{ n.title }}
{% endif %}
{{ n.message }}
{% if not n.read %} {% endif %}
{% endfor %} {% else %}
No notifications
{% endif %}