{% extends 'base.html' %} {% load static %} {% block title %}Batch Notification Management{% endblock %} {% block content %}
| 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 }}
{{ 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. | ||||||