{% extends 'base.html' %} {% load static i18n crispy_forms_tags %} {% block title %}{{ schedule.application.name }} - {% trans "Interview Details" %} - ATS{% endblock %} {% block customCSS %} {% endblock %} {% block content %}

{% trans "Interview Details" %}

{{ schedule.application.name }} - {{ schedule.job.title }}

{% trans "Back to Interviews" %} {% trans "View Job" %} {% if interview.status != 'cancelled' %} {% endif %}
{% trans "Candidate Information" %}
{% if schedule.application.resume %} {% trans "Download Resume" %} {% endif %} {% comment %} {% endcomment %}
{% trans "Personal Details" %}

{% trans "Name:" %} {{ schedule.application.name }}

{% trans "Email:" %} {{ schedule.application.email }}

{% trans "Phone:" %} {{ schedule.application.phone }}

{% if schedule.application.location %}

{% trans "Location:" %} {{ schedule.application.location }}

{% endif %}
{% trans "Application Details" %}

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

{% trans "Department:" %} {{ schedule.job.department }}

{% trans "Applied Date:" %} {{ schedule.application.created_at|date:"d-m-Y" }}

{% trans "Current Stage:" %} {{ interview.application.stage }} {{ schedule.application.stage }}

{% trans "Interview Details" %}
{% if interview.location_type == 'Remote' %} {% trans "Remote" %} {% else %} {% trans "Onsite" %} {% endif %} {{ schedule.status }}
{% trans "Date:" %} {{ schedule.interview_date|date:"d-m-Y" }}
{% trans "Time:" %} {{ schedule.interview_time|date:"h:i A" }}
{% trans "Duration:" %} {{ interview.duration }} {% trans "minutes" %}
{% trans "Status:" %} {{ schedule.status }}
{% if interview.location_type == 'Remote' %}
{% trans "Remote Meeting Details" %}
{% trans "Platform:" %} Zoom
{% if schedule.interview %}
{% trans "Meeting ID:" %} {{ interview.meeting_id }}
{% trans "Password:" %} {{ interview.password }}
{% if interview.details_url %} {% endif %} {% endif %}
{% else %}
{% trans "Onsite Location Details" %}
{% if schedule.interview %}
{% trans "Address:" %} {{ interview.physical_address }}
{% trans "Room:" %} {{ interview.room_number }}
{% endif %}
{% endif %}
{% trans "Interview Timeline" %}
{% trans "Interview Scheduled" %}

{% trans "Interview was scheduled for" %} {{ schedule.interview_date|date:"d-m-Y" }} {{ schedule.interview_time|date:"h:i A" }}

{{ interview.created_at|date:"d-m-Y h:i A" }}
{% if interview.status == 'CONFIRMED' %}
{% trans "Interview Confirmed" %}

{% trans "Candidate has confirmed attendance" %}

{% trans "Recently" %}
{% endif %} {% if interview.status == 'COMPLETED' %}
{% trans "Interview Completed" %}

{% trans "Interview has been completed" %}

{% trans "Recently" %}
{% endif %} {% if interview.status == 'CANCELLED' %}
{% trans "Interview Cancelled" %}

{% trans "Interview was cancelled on: " %}{{interview.interview.cancelled_at|date:"F j, Y"}}

{% trans "Recently" %}
{% endif %}
{% comment %}
{% trans "Participants" %}
{% if schedule.participants.exists %}
{% trans "Internal Participants" %}
{% for participant in schedule.participants.all %}
{{ participant.first_name.0 }}{{ participant.last_name.0 }}
{{ participant.get_full_name }}
{{ participant.email }}
{% endfor %} {% endif %} {% if schedule.system_users.exists %}
{% trans "External Participants" %}
{% for user in schedule.system_users.all %}
{{ user.first_name.0 }}{{ user.last_name.0 }}
{{ user.get_full_name }}
{{ user.email }}
{% endfor %} {% endif %} {% if not schedule.participants.exists and not schedule.system_users.exists %}

{% trans "No participants added yet" %}

{% endif %}
{% endcomment %}
{% endcomment %}
{% trans "Actions" %}
{% if schedule.status != 'CANCELLED' and schedule.status != 'COMPLETED' %} {% endif %}
{% if schedule.status == 'COMPLETED' %} {% endif %}
{% endblock %} {% block customJS %} {% endblock %}