summaryrefslogtreecommitdiffstats
path: root/hyperkitty/templates/message.html
diff options
context:
space:
mode:
Diffstat (limited to 'hyperkitty/templates/message.html')
-rw-r--r--hyperkitty/templates/message.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/hyperkitty/templates/message.html b/hyperkitty/templates/message.html
index 5d061e5..75770f1 100644
--- a/hyperkitty/templates/message.html
+++ b/hyperkitty/templates/message.html
@@ -9,6 +9,15 @@
<section id="thread_content">
{% include 'messages/first_email.html' with first_mail=message %}
+
+ {% if attachments|length %}
+ <h2>Attachments</h2>
+ <ul>
+ {% for attachment in attachments %}
+ <li>{{attachment.name}} ({{attachment.content_type}}, {{attachment.size}} octets)</li>
+ {% endfor %}
+ </ul>
+ {% endif %}
</section>
{% endblock %}