{% extends "one_column_body.html" %} {% block title %}{% trans title=email.title %}Preview of email "{{ title }}"{% endtrans %}{% endblock %} {% block content %}

{% trans title=email.title %}Preview of email "{{ title }}"{% endtrans %}

{% trans %}Description{% endtrans %}: {{ email.description }}
{% for sample in samples %} {% if samples|length > 1 %}

{% trans num=loop.index %}Example {{ num }}{% endtrans %}

{% endif %} {% if sample['error_message'] %}
{{ sample['error_message'] }}
{% else %}
{% trans %}Subject{% endtrans %}: "{{ sample['subject'] }}"
{% trans %}Body text (below, email styling preserved){% endtrans %}
{# use iframe to render styling correctly #} {% endif %} {% endfor %} {% endblock %}