{% 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 "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 "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 "Question" %} | {% trans "Type" %} | {% trans "Difficulty" %} | {% trans "Category" %} |
|---|---|---|---|
| {{ question.question_text }} | {{ question.question_type|capfirst }} | {{ question.difficulty_level|capfirst }} | {{ question.category|capfirst }} |
| {{ question.question_text }} | {{ question.question_type|capfirst }} | {{ question.difficulty_level|capfirst }} | {{ question.category|capfirst }} |
{% trans "AI is generating personalized interview questions..." %}
{% trans "Loading questions..." %}
{% trans "No AI questions generated yet. Click 'Generate Questions' to create personalized interview questions based on the candidate's profile and job requirements." %}
{% trans "Interview was scheduled for" %} {{ schedule.interview_date|date:"d-m-Y" }} {{ schedule.interview_time|date:"h:i A" }}
{% trans "Candidate has confirmed attendance" %}
{% trans "Interview has been completed" %}
{% trans "Interview was cancelled on: " %}{{ schedule.cancelled_at|date:"d-m-Y" }} {{ schedule.cancelled_at|date:"h:i A" }}
{% trans "No participants added yet" %}