{% extends 'base.html' %} {% load static %} {% block title %}Batch Notification Management{% endblock %} {% block content %}

Batch Notification Management

Notification Batches

{% for batch in batches %} {% empty %} {% endfor %}
Batch Type Recipients Progress Status Created Actions
{{ batch.name }}
{{ batch.template.name }}
{{ batch.notification_type|title|replace:"_":" " }} {{ batch.total_recipients }}
{% if batch.total_recipients > 0 %}
{% endif %}
{{ batch.sent_count }}/{{ batch.total_recipients }}
{% if batch.failed_count > 0 %}
{{ batch.failed_count }} failed
{% endif %}
{{ batch.get_status_display }} {{ batch.created_at|date:"M d, Y H:i" }}
by {{ batch.created_by.get_full_name }}
{% if batch.status == 'pending' %} {% elif batch.status == 'processing' %} {% endif %} {% if batch.error_log %} {% endif %}
No notification batches found.
{% if batches.has_other_pages %}
Showing {{ batches.start_index }} to {{ batches.end_index }} of {{ batches.paginator.count }} batches
{% if batches.has_previous %} Previous {% endif %} {% if batches.has_next %} Next {% endif %}
{% endif %}
{% endblock %}