{% extends "admin/base/list.html" %} {% block title %} Attachments | {{ super() }} {% endblock %} {% block breadcrumbs %} {% call bread.trail() %} {{ bread.crust('Attachments') }} {% endcall %} {% endblock %} {% block heading %}

Attachments

{% endblock %} {% block thead %} ID Filename Extension MIME Type Compression {{ column_icon('save', 'On Disk')}} {% endblock %} {% block tbody %} {% for attachment in items %} {{ attachment.id.hex | truncate(10, true, '') }} {{ attachment.filename|truncate(40) }} {{ attachment.extension }} {{ attachment.mimetype|truncate(20) }} {{ attachment.compression.name }} {{ is_present(attachment.cached_filepath.exists())}} {{- icon("download") -}} {{- icon("trash") -}} {% endfor %} {% endblock %} {% block controls %} New Attachment {% endblock %}