{% extends 'paxalia/base.html' %} {% load static i18n %} {% block title %}{% trans "Notifications" %} – Paxalia Analytics{% endblock %} {% block page_title %}{% trans "Notifications" %}{% endblock %} {% block page_subtitle %}{% trans "Anomalies, security events, and report activity" %}{% endblock %} {% block extra_css %} {% endblock %} {% block dashboard_content %}
{% csrf_token %}
{% if notifications %} {% for n in notifications %} {% endfor %}
{% trans "When" %} {% trans "Category" %} {% trans "Subject" %} {% trans "Message" %} {% trans "Actions" %}
{{ n.created_at|date:"Y-m-d H:i" }} {{ n.get_category_display }} {{ n.subject }} {{ n.message|truncatewords:20 }} {% if not n.is_read %}
{% csrf_token %}
{% endif %}
{% else %}
{% trans "No notifications yet." %}{% trans "Anomaly alerts, security events, and scheduled-report activity will appear here." %}
{% endif %}
{% endblock %}