{% load simple_translation_tags document_library_tags %} {% load url form future %} {% for document in object_list %} {% with document|get_preferred_translation_from_request:request as document_title %}

{{ document_title.title }}

{{ document_title.description }}

{% endwith %} {% if document.download_url %}

{{ document.download_url }}

{% else %} {% get_files_for_document document as files %} {% for file in files %}

{{ file.name|default:file.original_filename }}

{% endfor %} {% endif %} {% endfor %}