{% extends 'base.html' %} {% load static %} {% block title %}Notification Center{% endblock %} {% block css %} {% endblock %} {% block content %}

Notification Center

Manage system notifications and alerts

Unread
{{ unread_count }}
{{ total_notifications }} total
High Priority
{{ high_priority_count }}
Requires attention
Today
{{ today_count }}
New notifications
System Alerts
{{ system_alerts_count }}
Active alerts

Notifications

{% for notification in notifications %}
{{ notification.title }}
{{ notification.get_type_display }} {{ notification.get_priority_display }}
{{ notification.message|truncatechars:150 }}
{% empty %}
No notifications found

You're all caught up!

{% endfor %}
{% if is_paginated %} {% endif %}
{% endblock %} {% block js %} {% endblock %}