{% extends "base.html" %} {% block title %}Notification Recipients — {{ project.name }}{% endblock %} {% block content %}
Additional recipients notified for events in {{ project.name }} facilities — on top of the global {% if current_user.role == 'admin' %}notification matrix{% else %}notification matrix (admin-managed){% endif %}.
| Recipient | Type | Notified Events | |
|---|---|---|---|
|
{% if r.is_staff %}
{{ r.user.display_name }}
{{ r.user.email or 'no email on file' }}
{% else %}
{{ r.email }}
{% endif %}
|
{% if r.is_staff %} Staff · in-app + email {% else %} External · email {% endif %} |
{% for ev in r.get_events() %}
{{ matrix_events.get(ev, ev) }}
{% endfor %}
|