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

{% trans "Interview Management" %}

{% trans "Job:" %} {{ job.title }} {{ job.internal_job_id }}

{% include 'jobs/partials/applicant_tracking.html' %}

{% trans "Application List" %} {{ applications|length }} / {{ total_candidates }} {% trans "Total" %}

{% if applications %}
{% csrf_token %}
{% trans "Bulk Schedule Interviews" %}
{% endif %}
{% csrf_token %} {% for application in applications %} {% endfor %}
{% if applications %}
{% endif %}
{% trans "Name" %} {% trans "Contact Info" %} {% trans "Interviews" %} {% trans "Notes" %} {% trans "Result" %} {% trans "Actions" %}
{{ application.email }}
{{ application.phone }}
{% if not application.interview_status %} {% else %} {% endif %}
{% if not applications %}

{% trans "No applications are currently in the Interview stage for this job." %}

{% endif %}
{% include "recruitment/partials/note_modal.html" %} {% endblock %} {% block customJS %} {% endblock %}