{% extends 'base.html' %} {% block content %}

Email Subscriptions

Add Subscription

Current Recipients

{% if not subscriptions %}

No subscriptions yet. Add one above to start sending alerts.

You can customize alert content from the Email Templates page.

{% else %}

{{ total_active }} active of {{ total }} total.

{% for sub in subscriptions %} {% endfor %}
Email Status Created Updated Action
{{ sub.email }} {{ 'Active' if sub.is_active else 'Inactive' }} {{ sub.created_at }} {{ sub.updated_at }}
{% if sub.is_active %} {% else %} {% endif %}
{% endif %}
{% endblock %}