{% extends 'base.html' %} {% load static i18n %} {% block title %}Candidate Management - {{ job.title }} - University ATS{% endblock %} {% block customCSS %} {% endblock %} {% block content %}

{% trans "Applicant Screening" %}

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

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

{% trans "AI Scoring & Top Candidate Filter" %}

{% trans "Candidate List" %} {{ candidates|length }} / {{ total_candidates }} Total

{% if candidates %}
{% csrf_token %} {# MODIFIED: Using d-flex for horizontal alignment and align-items-end to align everything based on the baseline of the button/select #}
{# Select Input Group #}
{# Button #}
{% endif %}
{% csrf_token %} {% for candidate in candidates %} {% endfor %}
{% if candidates %}
{% endif %}
{% trans "Candidate Name" %} {% trans "Contact Info" %} {% trans "AI Score" %} {% trans "Is Qualified?" %} {% trans "Professional Category" %} {% trans "Top 3 Skills" %} {% trans "Actions" %}
{{ candidate.name }}
{{ candidate.email }}
{{ candidate.phone }}
{% if candidate.match_score %} {{ candidate.match_score|default:"0" }}% {% endif %} {% if candidate.screening_stage_rating %} {{ candidate.screening_stage_rating|default:"--" }} {% endif %} {% if candidate.professional_category %} {{ candidate.professional_category }} {% endif %} {% if candidate.top_3_keywords %}
{% for skill in candidate.top_3_keywords %} {{ skill }} {% endfor %}
{% endif %}
{% if not candidates %} {% endif %}
{% endblock %} {% block customJS %} {% endblock %}