{% extends "base.html" %} {% load static %} {% block title %}Delete Notification - {{ object.title }}{% endblock %} {% block content %}
Confirm Deletion
Warning!

You are about to delete the notification "{{ object.title }}". This action cannot be undone.

Please confirm that you want to permanently delete this notification.

Notification Details

{{ object.title }}

{{ object.get_priority_display }}

{{ object.category }}

{% if object.is_active %} {% if object.start_date <= now and object.end_date >= now %} Active {% elif object.start_date > now %} Scheduled {% elif object.end_date < now %} Expired {% endif %} {% else %} Inactive {% endif %}

{{ object.start_date|date:"F j, Y" }}

{{ object.end_date|date:"F j, Y" }}

{{ object.message|linebreaks }}

Impact Assessment
Impressions {% if notification_stats.impressions %} {{ notification_stats.impressions }} views {% else %} No data {% endif %}
Clicks {% if notification_stats.clicks %} {{ notification_stats.clicks }} clicks {% else %} No data {% endif %}
Target Audience {% if object.target_roles.exists or object.target_departments.exists %} Specific targets {% else %} All users {% endif %}
Active Status {% if object.is_active and object.start_date <= now and object.end_date >= now %} Currently active {% else %} Not currently active {% endif %}
{% csrf_token %}
Cancel
Alternative Actions

Instead of deleting this notification, consider these alternatives:

Notification Preview
{{ object.title }}

{{ object.message }}

{% if object.link_url %}

{{ object.link_text|default:"Learn More" }}

{% endif %}
{% endblock %} {% block js %} {% endblock %}