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

{% trans "Hired Candidates" %} - {{ job.title }}

{% trans "Successfully Hired:" %} {{ candidates|length }}

{% trans "Congratulations!" %}

{% trans "These candidates have successfully completed the hiring process and joined your team." %}

{% include 'jobs/partials/applicant_tracking.html' %}
{% for candidate in candidates %} {% endfor %}
{% trans "Name" %} {% trans "Contact" %} {% trans "Applied Position" %} {% trans "Hired Date" %} {% trans "Match Score" %} {% trans "Actions" %}
{{ candidate.name }}
{% trans "Hired" %}
{{ candidate.email }}
{{ candidate.phone }}
{{ job.title }}
{{ job.department }}
{% if candidate.offer_date %} {{ candidate.offer_date|date:"M d, Y" }} {% else %} -- {% endif %}
{% if candidate.ai_score %} {{ candidate.ai_score }}% {% else %} -- {% endif %}
{% if not candidates %} {% endif %}
{% endblock %} {% block customJS %} {% endblock %}