{% extends "django_pymissive/base_preview.html" %} {% load static i18n %} {% block preview_stylesheet %} {% endblock %} {% block preview_content %}

{% trans 'From' %}: {% if sender.name or sender.email %} {% if sender.name %}{{ sender.name }} {% endif %}{% if sender.email %}<{{ sender.email }}>{% else %}<{% trans "Not filled in" %}>{% endif %} {% else %} {% trans "Not filled in" %} {% endif %}

{% if reply_to %}

{% trans 'Reply-To' %}: {% if reply_to.name or reply_to.email %} {% if reply_to.name %}{{ reply_to.name }} {% endif %}{% if reply_to.email %}<{{ reply_to.email }}>{% else %}<{% trans "Not filled in" %}>{% endif %} {% else %} {% trans "Not filled in" %} {% endif %}

{% endif %}

{% trans 'To' %}: {% if to_recipients %} {% for r in to_recipients %}{% if not forloop.first %}, {% endif %}{% if r.name %}{{ r.name }} {% endif %}{% if r.email %}<{{ r.email }}>{% else %}<{% trans "Not filled in" %}>{% endif %}{% endfor %} {% else %} {% trans "Not filled in" %} {% endif %}

{% if cc_recipients %}

{% trans 'Cc' %}: {% for r in cc_recipients %}{% if not forloop.first %}, {% endif %}{% if r.name %}{{ r.name }} {% endif %}{% if r.email %}<{{ r.email }}>{% else %}<{% trans "Not filled in" %}>{% endif %}{% endfor %}

{% endif %} {% if bcc_recipients %}

{% trans 'Bcc' %}: {% for r in bcc_recipients %}{% if not forloop.first %}, {% endif %}{% if r.name %}{{ r.name }} {% endif %}{% if r.email %}<{{ r.email }}>{% else %}<{% trans "Not filled in" %}>{% endif %}{% endfor %}

{% endif %}

{% trans 'Subject' %}: {% if missive.subject_compiled %}{{ missive.subject_compiled }}{% else %}{% trans "Not filled in" %}{% endif %}

{% if missive.body_html_compiled %} {% endif %} {% if missive.body_text_compiled %} {% endif %} {% if not missive.body_html_compiled and not missive.body_text_compiled %}

{% trans 'No content' %}

{% endif %}
{% if missive.attachments_physical %}
{% for doc in missive.attachments_physical %} {% if doc.attachment_url %} 📄 {{ doc.attachment_url.name|default:"unnamed" }} {% else %} 📄 {% trans "Not filled in" %} {% endif %} {% endfor %}
{% endif %}
{% endblock %}