{% extends "templates/web.html" %} {% block title %} {{ doc.subject }} {% endblock %} {% block page_content %}

{{ doc.subject }}

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

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

{{ attachment.attachment }}

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