{% load i18n %} {% if candidates %}
{% csrf_token %} {% for candidate in candidates %} {% endfor %}
{% trans "Name / Contact" %} {% trans "AI Score" %} {% trans "Status" %} {% trans "Stage" %} {% trans "Actions" %}
{{ candidate.name }}
{{ candidate.email|default:"N/A" }}
{{ candidate.phone|default:"N/A" }}
{% if is_potential_view %} {# Show candidate ID in this view to help with bulk update ID entry #}
ID: **{{ candidate.id }}**
{% endif %}
{{ candidate.match_score|default:"0" }} {{ candidate.get_applicant_status_display }} {{ candidate.get_stage_display }} {% if candidate.stage == "Exam" and candidate.exam_status %}
{{ candidate.get_exam_status_display }} {% endif %}
{# View Candidate Criteria/Details (Uses HTMX target #} {# Individual actions (Shown if it's the filtered view OR if the applicant needs to be promoted) #} {% if is_potential_view or candidate.applicant_status == 'Applicant' %} {% if candidate.applicant_status == 'Applicant' %} {# Mark as Candidate Button (Manual Selection/Promotion) #} {% endif %} {# Stage Progression Dropdown #} {% endif %}
{% else %}

{% trans "No candidates found in this list." %}

{% if is_potential_view %}

{% trans "Adjust your 'Top N' filter in the controls above or check the All Applicants list." %}

{% endif %}
{% endif %}