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

No documents uploaded yet.

Click "Upload Document" to add files for this candidate.

{% endif %}