{% extends 'base.html.twig' %} {% block title %}Factory Email Attachments | {{ parent() }}{% endblock %} {% block body %} {# @var files \Knp\Component\Pager\Pagination\PaginatorInterface #}

Factory Settings > Factory Email Attachments



{{ files.getTotalItemCount }} Files Found
{% for file in files %} {# @var file \App\Entity\File #} {% endfor %}
{{ knp_pagination_sortable(files, 'Name', 'file.name') }} {{ knp_pagination_sortable(files, 'Date', 'file.uploadedAt') }} {{ knp_pagination_sortable(files, 'Size', 'file.size') }}
{{ file.name }} {% if file.hasThumbnail %} {% else %} Link {% endif %} {{ file.uploadedAt|date('m/d/Y') }} {{ file.formattedSize }}
{{ files.getTotalItemCount }} Files Found
{% endblock %}