{% extends 'base.html' %} {% load static i18n %} {% block title %}- {{ job.title }} - ATS{% endblock %} {% block customCSS %} {% 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." %}

{% include 'jobs/partials/applicant_tracking.html' %}
{% if applications %}
{% csrf_token %} {# MODIFIED: Using d-flex for horizontal alignment and align-items-end to align everything based on the baseline of the button/select #}
{# Select Input Group #}
{# Button #} {# email button#}
{% endif %}
{% csrf_token %} {% for application in applications %} {% endfor %}
{% if applications %}
{% endif %}
{% trans "Name" %} {% trans "Contact" %} {% 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 %} {% endif %}
{% endblock %} {% block customJS %} {% endblock %}