{% extends "base.html" %} {% load static %} {% block title %}{{ job.title }} - 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 }} Total Applicants
{% if job.max_applications %}
{{ job.max_applications }} Positions Available
{% endif %}
Posted {{ job.created_at|date:"M d, Y" }}
{{ total_applications }}
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 }}
Average AI Score
{% endif %}
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 }}
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 %}
GPA: {{ application.person.gpa|floatformat:2 }}
{% endif %}
{% comment %} 👁️ Profile {% endcomment %} Application {% if application.stage == 'Interview' %} Schedule {% endif %} ✉️ Email
{% endfor %}
{% if page_obj.has_other_pages %} {% endif %} {% else %}

😔 No Applicants Found

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

🔄 Clear Filters
{% endif %}
{% endblock %}