{% extends 'base.html' %} {% load static i18n %} {% block title %}{% blocktrans %}Document Review Stage - {{ job.title }} - University ATS{% endblocktrans %}{% endblock %} {% block content %}

{% trans "Document Review" %}

{% trans "Job:" %} {{ job.title }} {{ job.internal_job_id }}

{% include 'jobs/partials/applicant_tracking.html' %}

{% trans "Search Applications" %}

{% trans "Applications Ready for Document Review" %} {{ applications|length }}

{% if applications %}
{% csrf_token %}
{% endif %}
{% csrf_token %} {% for application in applications %} {% endfor %}
{% if applications %}
{% endif %}
{% trans "Name" %} {% trans "Contact Info" %} {% trans "Current Stage" %} {% trans "Documents" %} {% trans "Notes" %} {% trans "Actions" %}
{{ application.person.first_name }} {{ application.person.last_name }}
{{ application.person.email }}
{{ application.person.phone|default:"--" }}
{% trans "Interview Completed" %} {% with documents=application.documents.all %} {% if documents %}
{% for document in documents %}
{{ document.get_document_type_display }}
{% endfor %}
{% else %}
{% trans "No documents uploaded" %}
{% endif %} {% endwith %}
{% if not applications %}

{% trans "No applications are currently ready for document review." %}

{% endif %}
{% endblock %} {% block customJS %} {% endblock %}