{{ "Filename" | trans }} : {{ file.getOriginalName() }}
{{ "Date" | trans }} : {{ app['date-formatter'].getPrettyString(file.getCreated()) }}
{% if file.getSession().getUser() is not none %}
{% set username = '' ~ file.getSession().getUser().getDisplayName() | e ~ '' %}
{% trans with {'%username%' : username} %}Uploaded by : %username%{% endtrans %}
{% endif %}
{{ "Collection" | trans }} : {{ file.getCollection(app).get_label(app['locale']) }}
{% for check in file.getEligibleChecks(app) %}
{{ border_checker_from_fqcn(check.getCheckClassname()).getMessage(app['translator']) }}
{% endfor %}
{% if file.getEligibleChecks(app)|length == 0 and file.getChecks()|length > 0 %}
{{ 'upload:: checkers for this file is disabled in configuration or deleted' | trans }}
{% endif %}
{# bloc to backup initial value of status list#}