{% extends "base.html" %} {% load i18n %} {% load static from staticfiles %} {% block headtitle %}{% trans 'Message: ' %}{{message.title}}{% endblock %} {% block main_content %}
From:{{message.sender}}
To: {% for rec in recipients%}{{rec}}{%if not forloop.last%}, {%endif%}{%endfor%}
Subject:{{message.title}}
Body:{% autoescape off %}{{message.body|removetags:"font"}}{% endautoescape %}
{% endblock %}