{% extends 'generic/object.html' %} {% load helpers %} {% block content %}
Template Details
Name {{ object.name }}
Slug {{ object.slug }}
Description {{ object.description|placeholder }}
Event Type {% badge object.get_event_type_display %}
Granularity {% badge object.get_granularity_display %}
Body Format {% badge object.get_body_format_display %}
Weight {{ object.weight }}
Include iCal {% checkmark object.include_ical %}
Inheritance
Is Base Template {% checkmark object.is_base_template %}
Extends {% if object.extends %} {{ object.extends|linkify }} {% else %} {{ ''|placeholder }} {% endif %}
{% include 'inc/panels/custom_fields.html' %}
{% include 'inc/panels/tags.html' %}
Recipients
Contact Roles {% if object.contact_roles.all %} {% for role in object.contact_roles.all %} {% badge role %}{% if not forloop.last %} {% endif %} {% endfor %} {% else %} {{ ''|placeholder }} {% endif %}
Contact Priorities {% if object.contact_priorities %} {% for priority in object.contact_priorities %} {% badge priority %}{% if not forloop.last %} {% endif %} {% endfor %} {% else %} {{ ''|placeholder }} {% endif %}
Subject Template
{{ object.subject_template }}
Body Template
{{ object.body_template }}
{% if object.css_template %}
CSS Template
{{ object.css_template }}
{% endif %} {% if object.include_ical and object.ical_template %}
iCal Template
{{ object.ical_template }}
{% endif %} {% if object.headers_template %}
Headers Template
{{ object.headers_template }}
{% endif %}
Template Scopes {% if perms.notices.add_templatescope %} Add Scope {% endif %}
{% if scopes %} {% for scope in scopes %} {% endfor %}
Object Type Object Event Type Event Status Weight
{{ scope.content_type }} {% if scope.object %} {% if scope.object.get_absolute_url %} {{ scope.object }} {% else %} {{ scope.object }} {% endif %} {% else %} All {% endif %} {{ scope.event_type|default:"-" }} {{ scope.event_status|default:"-" }} {{ scope.weight }} {% if perms.notices.change_templatescope %} {% endif %} {% if perms.notices.delete_templatescope %} {% endif %}
{% else %}
No scopes defined - this template applies globally.
{% endif %}
{% if object.is_base_template and children %}
Child Templates
{% for child in children %} {% endfor %}
Name Event Type Granularity Weight
{{ child|linkify }} {% badge child.get_event_type_display %} {% badge child.get_granularity_display %} {{ child.weight }}
{% endif %} {% if prepared_notifications %}
Recent Prepared Notifications
{% for notification in prepared_notifications %} {% endfor %}
Subject Status Approved By Sent At
{{ notification|linkify }} {% badge notification.get_status_display %} {{ notification.approved_by|placeholder }} {{ notification.sent_at|placeholder }}
{% endif %} {% endblock content %}