{% extends 'email_interface/testing/base.html' %} {% load crispy_forms_tags %} {% load thumbnail %} {% load i18n %} {% block head %} {% trans 'Attachments' %} {% endblock head %} {% block content %} {% for attachment in attachments %}
# {% trans 'Name' %} {% trans 'MIME Type' %} {% trans 'File' %} {% trans 'Message' %}
{{ attachment.pk }} {{ attachment.name }} {{ attachment.mime_type }} {% if 'image' in attachment.mime_type %} {% else %} {{ attachment.name }} {% endif %} {{ attachment.message.summary }} {% trans 'from' %} {{ attachment.message.sender }}
{% endfor %} {% endblock content %}