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

{% trans "Interview Details" %}

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

{% trans "Candidate Information" %}
{% if interview.application.resume %} {% trans "Download Resume" %} {% endif %}
{% trans "Personal Details" %}

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

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

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

{% if interview.application.location %}

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

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

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

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

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

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

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

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

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

{% trans "Candidate has confirmed attendance" %}

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

{% trans "Interview has been completed" %}

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

{% trans "Interview was cancelled" %}

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

{% trans "No participants added yet" %}

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