{% trans "You can upload and manage your resume, certificates, and professional documents here. These documents will be attached to your applications." %}
{# Document List #}
{% for document in documents %}
{{ document.document_type|title }}
({{ document.file.name|split:"/"|last }})
{% trans "Uploaded:" %} {{ document.uploaded_at|date:"d M Y" }}
{% empty %}
{% trans "No documents uploaded yet." %}
{% endfor %}
{# Modals with modern styling #}
{% trans "Upload Document" %}
{% include "forms/document_form.html" with slug=applicant.slug %}