{% extends "base.html" %} {% load scoped_tags %} {% block title %}Notifications{% endblock %} {% block page_title %}Notifications{% endblock %} {% block page_subtitle %}Principal-targeted messages from events and rules (Layer 15){% endblock %} {% block layer_indicator %}L15 Notifications{% endblock %} {% block content %}
{{ notifications|length }} notification{{ notifications|length|pluralize }} {% if unread_count %} {{ unread_count }} unread {% endif %}
{% if unread_count %}
{% csrf_token %}
{% endif %}
{% if notifications %}
{% for notif in notifications %}
{% if notif.status == "unread" %} UNREAD {% else %} READ {% endif %} {% if notif.channel %} {{ notif.channel }} {% endif %}

{{ notif.title|default:"Notification" }}

{% if notif.body %}

{{ notif.body|truncatewords:30 }}

{% endif %}

{{ notif.created_at|format_dt }}

{% if notif.status == "unread" %}
{% csrf_token %}
{% endif %}
{% endfor %}
{% else %} {% include "components/_empty_state.html" with title="No notifications" message="You don't have any notifications yet. They'll appear here when events trigger notification rules." %} {% endif %} {% endblock %}