{% extends "templates/web.html" %} {% block title %} {{ _("Newsletter") }} {% endblock %} {% block page_content %}

{{ doc.subject }}

{{ frappe.format_date(doc.modified) }}

{{ doc.message }}
{% if attachments %}
{{ _("Attachments") }}
{% for attachment in attachments %}

{{ attachment.file_name }}

{% endfor %}
{% endif %}
{% endblock %}