{% extends "base.html" %} {% load static %} {% block title %}Delete Delivery Log{% endblock %} {% block content %}

Delete Delivery Log

Back to Log

Confirm Delivery Log Deletion

Are you sure you want to delete this delivery log?

This action cannot be undone. The delivery log and all associated tracking information will be permanently removed.

Message Information
Message: {{ object.message.subject|default:"No subject" }}
Type: {{ object.message.get_message_type_display|default:"Unknown" }}
Recipient: {{ object.recipient }}
Method: {{ object.get_delivery_method_display }}
Delivery Status
Status: {{ object.get_status_display }}
Sent At: {% if object.sent_at %} {{ object.sent_at|date:"M d, Y g:i A" }} {% else %} Not sent {% endif %}
Delivered At: {% if object.delivered_at %} {{ object.delivered_at|date:"M d, Y g:i A" }} {% else %} Not delivered {% endif %}
Retry Count: {{ object.retry_count|default:0 }}
{% if object.error_message %}
Error Information
{{ object.error_message }}
{% endif %} {% if object.delivery_details %}
Delivery Details

{{ object.delivery_details }}

{% endif %}
{% csrf_token %}
These notes will be recorded for audit purposes.
What happens when you delete this log?
  • The delivery log record will be permanently removed
  • All tracking information will be lost
  • This action will be recorded in the audit log
  • Related message records will remain intact
  • Delivery statistics may be affected
Cancel
Related Information
Message Details
  • Created: {{ object.message.created_at|date:"M d, Y g:i A" }}
  • Priority: {{ object.message.get_priority_display|default:"Normal" }}
  • Channel: {{ object.message.channel|default:"Default" }}
System Information
  • Log ID: {{ object.pk }}
  • Created: {{ object.created_at|date:"M d, Y g:i A" }}
  • Last Updated: {{ object.updated_at|date:"M d, Y g:i A" }}
{% endblock %}