{% extends "django_pymissive/base_preview.html" %} {% load static i18n %} {% block preview_stylesheet %} {% endblock %} {% block preview_content %}
{% trans "Sender" %}
{% if sender.name %}
{{ sender.name }}
{% endif %} {% for line in sender_address_lines %}
{{ line }}
{% empty %}
-
{% endfor %}
{% if delivery_mode_display or priority_display or acknowledgement_display %}
{% if delivery_mode_display %} {{ delivery_mode_display }}{% trans "Delivery Mode" %} {% endif %} {% if priority_display %} {{ priority_display }}{% trans "Priority" %} {% endif %} {% if acknowledgement_display %} {{ acknowledgement_display }}{% trans "Acknowledgement Level" %} {% endif %}
{% endif %}
{% if postal_recipients %} {% with postal_recipients.0 as r %} {% if r.name %}
{{ r.name }}
{% endif %} {% for line in r.address_lines %}
{{ line }}
{% empty %}
-
{% endfor %} {% endwith %} {% else %}
{% trans "No recipient" %}
{% endif %}
{% if missive.body_postal_compiled %} {{ missive.body_postal_compiled|safe }} {% elif missive.body_html %} {{ missive.body_html|safe }} {% elif missive.body_text %}
{{ missive.body_text }}
{% else %}

{% trans "No content" %}

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