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

{{ object.title }} Broadcast Details

Broadcast Information

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" }}
Created By: {{ object.created_by.get_full_name }}
Scheduled For: {{ object.scheduled_at|date:"M d, Y H:i"|default:"Not scheduled" }}
Sent At: {{ object.sent_at|date:"M d, Y H:i"|default:"Not sent" }}
Message Content
{{ object.message|linebreaks }}
{% if object.target_audience %}
Target Audience

{{ object.target_audience }}

{% endif %}

Delivery Statistics

{{ object.total_recipients }}
Total Recipients
{{ object.delivered_count }}
Delivered
{{ object.pending_count }}
Pending
{{ object.failed_count }}
Failed

Quick Actions

{% if object.status == 'DRAFT' %} {% endif %} Edit Broadcast
Delete Broadcast
{% endblock %} {% block js %} {% endblock %}