{% extends "admin/base_admin.html" %} {% block title %}Notification Center - Admin{% endblock %} {% block content %}

Notification Center

System alerts and important updates for {{ group.name }}

{% set high_priority = notifications|selectattr('priority', 'equalto', 'high')|list %} {% set medium_priority = notifications|selectattr('priority', 'equalto', 'medium')|list %} {% set low_priority = notifications|selectattr('priority', 'equalto', 'low')|list %}
{{ high_priority|length }}

High Priority

Requires immediate attention

{{ medium_priority|length }}

Medium Priority

Review when convenient

{{ low_priority|length }}

Low Priority

Informational updates

{{ notifications|length }}

Total

All notifications

{% if notifications %} {% for notification in notifications %}
{% if notification.type == 'warning' %}
{% elif notification.type == 'error' %}
{% elif notification.type == 'success' %}
{% else %}
{% endif %}

{{ notification.title }}

{% if notification.priority == 'high' %} High Priority {% elif notification.priority == 'medium' %} Medium Priority {% else %} Low Priority {% endif %}

{{ notification.message }}

{% if notification.count is defined %}

Count

{{ notification.count }}

{% endif %}
{% if notification.action_url %} {{ notification.action_text or 'View Details' }} {% endif %}
{% endfor %} {% else %}

All Clear!

No notifications at this time. Your group is running smoothly.

{% endif %}

Quick Actions

{% endblock %}