{% extends "base.html" %} {% block title %}{{ 'communications'|t }} - {{ event.name }}{% endblock %} {% block content %}

{{ 'email_templates'|t }}

{{ 'customize_email_content'|t }}

{% for template_type, config in template_types.items() %} {% if template_type in templates_map %} {% set template = templates_map[template_type] %}

{{ config.name }}

{{ 'edit'|t }}

{{ 'subject'|t }}: {{ template.subject }}

{{ template.body[:200] }}...

{% endif %} {% endfor %}

{{ 'send_custom_email'|t }}

{{ 'send_custom_email_desc'|t }}

{{ 'compose_email'|t }}

{{ 'sent_emails'|t }}

{{ 'recent_communications'|t }}

{% if sent_history %} {% for email in sent_history %} {% endfor %}
{{ 'date'|t }} {{ 'subject'|t }} {{ 'recipient_type'|t }} {{ 'recipient'|t }}
{{ email.sent_at|localized_date }} {{ email.subject }} {{ email.recipient_type|t }} {% if email.recipient_id %} {% if email.recipient_type == 'attendee' %} {{ email.recipient_id }} {% else %} {{ email.recipient_id }} {% endif %} {% else %} {{ email.recipient_type|t }} {% endif %}
{% else %}

{{ 'no_emails_sent_yet'|t }}

{% endif %}
{% endblock %}