{% load url from future %} {% load storm %} {% load gravatar %} {% load hk_generic %} {% load tz %} {% is_message_new email.date as is_new %}
{% if is_new %} {% endif %}
{% gravatar email.sender_email 40 %}
{{ email.content|snip_quoted|wordwrap:90|urlizetrunc:76|escapeemail }}
{% if unfolded and email.attachments|count %}

Attachments:

{% endif %}
{% include "messages/like_form.html" with message_id_hash=email.message_id_hash object=email %} {% if not unfolded and email.attachments|count %}
{{ email.attachments|count }} attachment(s)
    {% for attachment in email.attachments %}
  • {{attachment.name}} ({{attachment.content_type}} — {{attachment.size|filesizeformat}})
  • {% endfor %}
{% endif %} {% include "messages/reply_form.html" with mlist_fqdn=mlist.name message_id_hash=email.message_id_hash %}