{% extends "base.html" %} {% load static %} {% block title %}Delete Broadcast - Communications{% endblock %} {% block content %}

Delete Broadcast Confirmation Required

Confirm Broadcast Deletion

Warning

You are about to delete this broadcast. This action cannot be undone and will affect delivery tracking and audit records.

Broadcast Details:
Title: {{ object.title }}
Type: {{ object.get_type_display }}
Priority: {{ object.get_priority_display }}
Status: {{ object.get_status_display }}
Created: {{ object.created_at|date:"M d, Y H:i" }}
Delivery Statistics:
Recipients: {{ object.total_recipients|default:"0" }}
Delivered: {{ object.delivered_count|default:"0" }}
Pending: {{ object.pending_count|default:"0" }}
Failed: {{ object.failed_count|default:"0" }}
Sent At: {{ object.sent_at|date:"M d, Y H:i"|default:"Not sent" }}
Message Content:
{{ object.message|linebreaks|truncatewords:50 }} {% if object.message|wordcount > 50 %}
... (message truncated)
{% endif %}
{% if object.status == 'SENT' %}
Impact Assessment
  • This broadcast has already been sent to {{ object.total_recipients }} recipient(s)
  • Delivery tracking records will be permanently deleted
  • Audit trail for this communication will be lost
  • Recipients will still have received the message
{% elif object.status == 'SCHEDULED' %}
Scheduled Broadcast Warning

This broadcast is scheduled for {{ object.scheduled_at|date:"M d, Y H:i" }}. Deleting it will cancel the scheduled delivery.

{% endif %}
{% csrf_token %}
Deletion Confirmation
{% if object.status == 'SENT' %}
{% endif %} {% if object.status == 'SCHEDULED' %}
{% endif %}
Cancel
{% endblock %} {% block js %} {% endblock %}