{% import "helper.twig" as helper %}
| {% trans %}attachment.name{% endtrans %} | {% trans %}attachment.attachment_type{% endtrans %} | {% trans %}attachment.file_name{% endtrans %} | {% trans %}attachment.file_size{% endtrans %} | ||
|---|---|---|---|---|---|
| {{ helper.attachment_icon(attachment, attachment_helper) }} | {{ attachment.name }} | {{ attachment.attachmentType.fullPath }} | {% if attachment.external %} {{ attachment.host }} {% else %} {{ attachment.filename }} {% endif %} | {% if attachment.external %} {% trans %}attachment.external_file{% endtrans %} {% elseif attachment_helper.fileExisting(attachment) %} {{ attachment_helper.humanFileSize(attachment) }} {% else %} {% trans %}attachment.file_not_found{% endtrans %} {% endif %} |