{% load static %} {% load file_filters %} {% load i18n %}
{% trans "Documents" %}
{% if documents %} {% for document in documents %}
{{ document.get_document_type_display }}
{{ document.file.name|filename }}
{% if document.description %}
{{ document.description }}
{% endif %}
{% trans "Uploaded by" %} {{ document.uploaded_by.get_full_name|default:document.uploaded_by.username }} {% trans "on" %} {{ document.created_at|date:"M d, Y" }}
{% if user.is_superuser or application.job.assigned_to == user %} {% endif %}
{% endfor %} {% else %}

{% trans "No documents uploaded yet." %}

{% trans "Click \"Upload Document\" to add files for this application." %}

{% endif %}