{{ people[msg.personId].displayName }}{{ msg.created|datetime_format(timestamp_format) }}
{% if msg.html %}{{ msg.html }}
{% else %}{{ msg.text|e|replace("\n", "
") }}
{% endif %}
{% if msg.files %}
") }}
-
{% for url in msg.files %}
{% if attachments[url].deleted == false %}
{% if attachments[url].content_type.startswith('image/') %}
-
Image File{{ attachments[url].filename }}{{ attachments[url].content_length|filesize_format }} {{ attachments[url].content_type }}
{% else %}
-
File{{ attachments[url].filename }}{{ attachments[url].content_length|filesize_format }} {{ attachments[url].content_type }}
{% endif %}
{% endif %}
{% endfor %}