{% extends 'base.html' %} {% load static i18n %} {% block title %}{% blocktrans %}Application Tier Management - {{ job.title }} - ATS {% endblocktrans %}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}

{% trans "Interview Management" %} - {{ job.title }}

{% trans "Applications in Interview Stage:" %} {{ applications|length }}

{% include 'jobs/partials/applicant_tracking.html' %}
{% if applications %}
{# Use d-flex to align the entire contents (two forms and the separator) horizontally #}
{# Form 1: Status Update #}
{% csrf_token %} {# Select Input Group - No label needed for this one, so we just flex the select and button #}
{# Separator (Vertical Rule) - Aligns automatically at the bottom with align-items-end #}
{# Form 2: Schedule Interviews #}
{% endif %}
{% csrf_token %} {% for application in applications %} {% endfor %}
{% if applications %}
{% endif %}
{% trans "Name" %} {% trans "Contact" %} {% trans "Topic" %} {% trans "Duration" %} {% trans "Meeting Date" %} {% trans "Link" %} {% trans "Meeting Status" %} {% trans "Interview Result"%} {% trans "Actions" %}
{{ application.email }}
{{ application.phone }}
{% if application.get_latest_meeting %} {{ application.get_latest_meeting }} {% else %} -- {% endif %}
{% if application.get_latest_meeting.duration %} {{ application.get_latest_meeting.duration }} {% trans _("Minutes") %} {% else %} -- {% endif %}
{% with latest_meeting=application.get_latest_meeting %} {% if latest_meeting %} {{ latest_meeting.start_time|date:"d-m-Y h:i A" }} {% else %} -- {% endif %} {% endwith %} {% with latest_meeting=application.get_latest_meeting %} {% if latest_meeting and latest_meeting.details_url %} join {% else %} -- {% endif %} {% endwith %} {{ latest_meeting.status }} {% with latest_meeting=application.get_latest_meeting %} {% if latest_meeting %} {% if latest_meeting.status == 'started' %} {% endif %} {{ latest_meeting.status|title }} {% else %} -- {% endif %} {% endwith %} {% if not application.interview_status %} {% else %} {% if application.interview_status %} {% else %} -- {% endif %} {% endif %} {% if application.get_latest_meeting %} {% if application.get_latest_meeting.location_type == 'Remote'%} {% else%} {% endif %} {% else %} {% comment %} Schedule {% endcomment %} {% comment %} Schedule {% endcomment %} {% endif %} {{candidate.get_interviews}}
{% if not applications %} {% endif %}
{% endblock %} {% block customJS %} {% endblock %}