{% if attachments %} {% set attachments = attachments|list %} Attachments:
{% for att in attachments if att.is_image() %}
Thumbnail
{{att.filename}} {% if edit_mode %}
{% endif %}
{% endfor %}
{% for att in attachments if not att.is_image() %}
{{att.filename}} ({{att.length}} bytes) {% if edit_mode %} {% endif %}
{% endfor %} {% endif %}