{% extends 'base.html' %} {% load static i18n %} {% block title %}{{ interview.application.name }} - {% trans "Interview Details" %} - ATS{% endblock %} {% block customCSS %} {% endblock %} {% block content %}
{% 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 "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 was scheduled for" %} {{ interview.interview_date|date:"d-m-Y" }} {{ interview.interview_time|date:"h:i A" }}
{% trans "Candidate has confirmed attendance" %}
{% trans "Interview has been completed" %}
{% trans "Interview was cancelled" %}
{% trans "No participants added yet" %}