{% extends "base.html" %} {% load static %} {% load i18n %} {% block title %}{{ job.title }} - {% trans "Applicants" %}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}

{{ job.title }}

{{ job.department|default:"General" }} • {{ job.get_job_type_display }} • {{ job.get_workplace_type_display }}

{{ total_applications }} {% trans "Total Applicants" %}
{% if job.max_applications %}
{{ job.max_applications }} {% trans "Positions Available" %}
{% endif %}
{% trans "Posted" %} {{ job.created_at|date:"M d, Y" }}
{{ total_applications }}
{% trans "Total Applications" %}
{% for stage_key, stage_data in stage_stats.items %}
{{ stage_data.count }}
{{ stage_data.label }}
{% endfor %} {% if ai_score_stats.average %}
{{ ai_score_stats.average|floatformat:1 }}
{% trans "Average AI Score" %}
{% endif %}
{% trans "Clear All" %}
{% if page_obj.object_list %}
{% for application in page_obj.object_list %}
{{ application.person.first_name }} {{ application.person.last_name }}
{{ application.person.email }}
{% if application.person.phone %}
{{ application.person.phone }}
{% endif %}
{{ application.get_stage_display }}
{% trans "Applied" %} {{ application.created_at|date:"M d, Y" }}
{% if application.ai_analysis_data.analysis_data_en.match_score %}
{{ application.ai_analysis_data.analysis_data_en.match_score }}%
{% endif %} {% if application.person.gpa %}
{% trans "GPA" %}: {{ application.person.gpa|floatformat:2 }}
{% endif %}
{% trans "Application" %} {% if application.stage == 'Interview' %} {% trans "Schedule" %} {% endif %} {% trans "Email" %}
{% endfor %}
{% if page_obj.has_other_pages %} {% include "includes/paginator.html" %} {% endif %} {% else %}

😔 {% trans "No Applicants Found" %}

{% if search_query or stage_filter or min_ai_score or max_ai_score or date_from or date_to %} {% trans "We couldn't find any applicants matching your current filters. Try adjusting your search criteria or clearing some filters." %} {% else %} {% trans "There are currently no applicants for this job." %} {% endif %}

{% trans "Clear Filters" %}
{% endif %}
{% endblock %}