{% extends 'base.html' %} {% load static i18n %} {% block title %}{% blocktrans %}Application Tier Management - {{ job.title }} - ATS {% endblocktrans %}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}

{% trans "Exam Management" %} - {{ job.title }}

{% trans "Applications in Exam Stage:" %} {{ total_candidates }}

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

{% trans "Application List" %} {{ applications|length }} / {{ total_candidates }} Total ({% trans "Sorted by AI Score" %})

{% if applications %}
{% csrf_token %} {# Using d-flex for horizontal alignment and align-items-end to align items to the bottom baseline #}
{# Select Input Group #}
{# Button #}
{% endif %}
{% csrf_token %} {% for application in applications %} {% endfor %}
{% if applications %}
{% endif %}
{% trans "Name" %} {% trans "Contact Info" %} {% trans "AI Score" %} {% trans "Exam Date" %} {% trans "Exam Score" %} {% trans "Exam Results" %} {% trans "Actions" %}
{{ application.name }}
{{ application.email }}
{{ application.phone }}
{{ application.match_score|default:"0" }}% {{application.exam_date|date:"d-m-Y h:i A"|default:"--"}} {{application.exam_score|default:"--"}} {% if not application.exam_status %} {% else %} {% if application.exam_status %} {% else %} -- {% endif %} {% endif %}
{% if not applications %} {% endif %}
{% endblock %} {% block customJS %} {% endblock %}