{% extends "admin/change_form.html" %} {% block breadcrumbs %}{% endblock breadcrumbs %} {% block content_title %}

Message {{object.id}}

{% endblock content_title %} {% block content %}
{{subject}}
{% for x in from %} {% if x.0 %} {{x.0}} <{{x.1}}> {% else %} {{x.1}} {% endif %} {% endfor %}
{% for x in to %} {% if x.0 %} {{x.0}} <{{x.1}}>{% if not forloop.last %}, {% endif %} {% else %} {{x.1}}{% if not forloop.last %}, {% endif %} {% endif %} {% endfor %}
{% for x in cc %} {% if x.0 %} {{x.0}} <{{x.1}}>{% if not forloop.last %}, {% endif %} {% else %} {{x.1}}{% if not forloop.last %}, {% endif %} {% endif %} {% endfor %}
{% if msg_html %}

HTML

{% endif %} {% if msg_text %}

Text

{{msg_text|linebreaks}}
{% endif %} {% if attachments %}

Attachments

{% for file in attachments %}
{{file.filename}}
{% endfor %}
{% endif %} {% endblock content %}