{% extends 'generic/object.html' %} {% load helpers %} {% load notices_filters %} {% block content %}
Notification Details
{% if object.event %} {% endif %}
Subject {{ object.subject }}
Template {{ object.template|linkify }}
Status {% badge object.get_status_display %}
Event {{ object.event_type_name|title }} {{ object.event|linkify }}
Approval
Approved By {{ object.approved_by|placeholder }}
Approved At {{ object.approved_at|placeholder }}
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
Delivery Tracking
Sent At {{ object.sent_at|placeholder }}
Delivered At {{ object.delivered_at|placeholder }}
Viewed At {{ object.viewed_at|placeholder }}
Recipients
{% if contacts %} {% for contact in contacts %} {% endfor %}
Contact Email Phone
{{ contact|linkify }} {{ contact.email|placeholder }} {{ contact.phone|placeholder }}
{% else %}
No contacts assigned
{% endif %} {% if object.recipients %} {% endif %}
Body (Plain Text)
{{ object.body_text }}
{% if object.body_html %}
Body (HTML)
{% if object.css %} {% endif %} {{ object.body_html|sanitize_html }}
{% endif %} {% if object.headers %}
Headers
{{ object.headers }}
{% endif %} {% if object.ical_content %}
iCal Content
{{ object.ical_content }}
{% endif %} {% endblock content %}