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

{% trans "Application Screening" %}

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

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

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

{% trans "Application List" %} {{ applications|length }} / {{ total_applications }} {% trans "Total" %}

{% if applications %}
{% 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 #} {# email button#}
{% endif %}
{% csrf_token %} {% for application in applications %} {% endfor %}
{% if applications %}
{% endif %}
{% trans "Name" %} {% trans "Contact Info" %} {% trans "GPA" %} {% trans "Years of Experience" %} {% trans "AI Score" %} {% trans "Is Qualified?" %} {% trans "Professional Category" %} {% trans "Top 3 Skills" %} {% trans "Note" %} {% trans "Actions" %}
{{ application.name }}
{{ application.email }}
{{ application.phone }}
{{application.person.gpa|default:"0"}} {{ application.years_of_experience }} {% if application.is_resume_parsed %} {% if application.match_score %} {{ application.match_score|default:"0" }}% {% endif %} {% else %}
{% trans 'AI scoring..' %}
{% endif %}
{% if application.screening_stage_rating %} {{ application.screening_stage_rating|default:"--" }} {% endif %} {% if application.professional_category %} {{ application.professional_category }} {% endif %} {% if application.top_3_keywords %}
{% for skill in application.top_3_keywords %} {{ skill }} {% endfor %}
{% endif %}
{% if not applications %} {% endif %}
{% include "recruitment/partials/note_modal.html" %} {% endblock %} {% block customJS %} {% endblock %}