{% load i18n %}
{% for file in folder_files %}
{{ file }}
{% if instance.show_file_size %}
{{ file.size|filesizeformat }}
{% endif %}
{% if not forloop.last %}
{% endif %}
{% empty %}
{% trans "No files were found in the specified folder." %}
{% endfor %} {% comment %} # https://github.com/divio/django-filer/blob/master/filer/models/filemodels.py {{ instance.folder_src }} {{ instance.get_files }} or {{ folder_files }} # Available variables: {{ instance.template }} {{ instance.link_target }} {{ instance.show_file_size }} {{ instance.attributes_str }} {% endcomment %}