{% extends 'base.html' %} {% load static %} {% block title %}Notifications - Stream Processor{% endblock %} {% block page_title %}
View and manage notification delivery history
Total Sent
{{ notifications|length|default:0 }}
Pending
{% for notification in notifications %}{% if notification.status == 'pending' %}{{ forloop.counter0|add:1 }}{% endif %}{% empty %}0{% endfor %}
Delivered
{% for notification in notifications %}{% if notification.status == 'completed' %}{{ forloop.counter0|add:1 }}{% endif %}{% empty %}0{% endfor %}
Failed
{% for notification in notifications %}{% if notification.status == 'failed' %}{{ forloop.counter0|add:1 }}{% endif %}{% empty %}0{% endfor %}
{{ notification.message|truncatechars:200 }}
This page shows the delivery history of all notifications sent by the system. Each notification includes: