{% extends "base.html" %} {% block title %}Attachments — {{ project.human_key }}{% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}

Attachments

Messages with attached files {% if items %} {{ items|length }} message{{ 's' if items|length != 1 else '' }} {% endif %}

{% if items %}
{% for it in items %}
{% if it.attachments %}
{% for a in it.attachments %}
{% if a.media_type and 'image' in a.media_type %} {% elif a.media_type and 'video' in a.media_type %} {% elif a.media_type and 'audio' in a.media_type %} {% elif a.media_type and 'pdf' in a.media_type %} {% else %} {% endif %}
{{ a.media_type or 'file' }} {% if a.path %} : {{ a.path }} {% endif %} {% if a.bytes %} {{ a.bytes }} {% endif %}
{% endfor %}
{% endif %}
{% endfor %}
{% else %}

No attachments found

Messages with attachments will appear here.

{% endif %}
{% endblock %}