{% extends "base.html" %} {% load static %} {% block title %}Delete Notification - {{ object.title }}{% endblock %} {% block content %}
You are about to delete the notification "{{ object.title }}". This action cannot be undone.
Please confirm that you want to permanently delete this notification.
{{ 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 }}
| 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 %} |
Instead of deleting this notification, consider these alternatives:
{{ object.message }}
{% if object.link_url %}