{% extends 'base.html' %} {% load static i18n %} {% block title %}{% blocktrans %}Hired Stage - {{ job.title }} - University ATS{% endblocktrans %}{% endblock %} {% block content %}

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

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

{% trans "Congratulations!" %}

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

{% if job.source %}
{% trans "ERP Sync Status" %}
{% trans "Source:" %} {{ job.source.name }}
{% trans "Sync Status:" %} {{ job.source.get_sync_status_display }}
{% trans "Last Sync:" %} {% if job.source.last_sync_at %} {{ job.source.last_sync_at|date:"M d, Y H:i" }} {% else %} {% trans "Never" %} {% endif %}
{% trans "Hired Candidates:" %} {{ applications|length }}
{% else %} {% endif %}
{% include 'jobs/partials/applicant_tracking.html' %}

{% trans "Hired Applications" %} {{ applications|length }}

{% csrf_token %} {% for application in applications %} {% endfor %}
{% trans "Name" %} {% trans "Contact Info" %} {% trans "Applied Position" %} {% trans "Hired Date" %} {% trans "Status" %} {% trans "Actions" %}
{{ application.name }}
{{ application.email }}
{{ application.phone }}
{{ job.title }}
{{ job.department }}
{% if application.offer_date %} {{ application.offer_date|date:"M d, Y" }} {% else %} -- {% endif %}
{% trans "Hired" %}
{% if not applications %}

{% trans "No applications have been hired for this position yet." %}

{% endif %}
{% endblock %} {% block customJS %} {% endblock %}