{% extends 'base.html' %} {% load static i18n %} {% block title %}{% blocktrans %} Document Review - {{ job.title }} - University ATS{%endblocktrans %}{% endblock %} {% block customCSS %} {% 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 %}
{# Use d-flex to align the entire contents (two forms and the separator) horizontally #}
{# Form 1: Status Update #}
{% csrf_token %} {# Select Input Group - No label needed for this one, so we just flex the select and button #}
{# Separator (Vertical Rule) - Aligns automatically at the bottom with align-items-end #}
{% for application in applications %} {% endfor %}
{% if applications %}
{% endif %}
{% trans "Name" %} {% trans "Contact Info" %} {% trans "Current Stage" %} {% trans "Documents" %} {% 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 %} {% endfor %}
{{ document.get_document_type_display }}
{% trans "Uploaded" %} {{ document.created_at|date:"M d, Y" }}
{% else %}
{% trans "No documents uploaded" %}
{% endif %} {% endwith %}
{% else %} {% endif %}
{% endblock %} {% block customJS %} {% endblock %}