{% extends "base.html" %} {% block title %}Notifications — {{ library_name() }}{% endblock %} {% block content %}

Notifications

{% if message %}

{{ message }}

{% endif %} {% if error %}

{{ error }}

{% endif %}
{% if rows %}
{% for row in rows %} {% endfor %}
ID Created Template Recipient Status Attempts Subject Action
#{{ row.id }} {{ row.created_at.strftime("%Y-%m-%d %H:%M") }} {{ row.template_key }} {{ row.recipient_email or "—" }} {{ row.status }}{% if row.last_error %}
{{ row.last_error }}{% endif %}
{{ row.attempts }} {{ row.subject | truncate(60) }} {% if row.status in ('failed', 'pending') %}
{% else %} — {% endif %}
{% else %}

No notifications match the current filter.

{% endif %} {% endblock %}