{# Notification bell dropdown -- HTMX partial #} {# Polled every 30s from base.html, swaps into #notification-bell #}
Notifications
{% if unread_count > 0 %} {% endif %}
{% 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 %}