{% 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 }}

{% if applications %}
{% csrf_token %}
{% 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 %} {% if application.interview_status %} {% endif %} {% endif %}
{% if application.get_latest_meeting %} {% if application.get_latest_meeting.location_type == 'Remote' %} {% else %} {% endif %} {% else %} {% endif %}
{% if not applications %}

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

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