{% load i18n django_pymissive_preview %} {# Single source for postal first page: browser preview + PDF (via body_to_pdf). #} {% if provider_address_css %} {% endif %}
{% if postal_letter_recipient %} {% if postal_letter_recipient.name %}
{{ postal_letter_recipient.name }}
{% endif %} {% for line in postal_letter_recipient.address.text_3lines %}
{{ line|join:" " }}
{% empty %}
-
{% endfor %} {% else %}
{% trans "No recipient" %}
{% endif %}
{% trans "Letter body" as letter_preview_title %} {% if missive.first_document_compiled %} {% if sandbox_compiled_body %} {% sandboxed_html missive.first_document_compiled letter_preview_title %} {% else %} {{ missive.first_document_compiled|safe }} {% endif %} {% elif missive.body_rich %} {% if sandbox_compiled_body %} {% sandboxed_html missive.body_rich letter_preview_title %} {% else %} {{ missive.body_rich|safe }} {% endif %} {% elif missive.body_text %}
{{ missive.body_text }}
{% else %}

{% trans "No content" %}

{% endif %}