{% extends "base.html" %} {% load static %} {% block extra_css %} {% endblock %} {% block content %}

Interview Details

{{ job.title }}
Candidate Information
Name: {{ interview.candidate.name }}
Email: {{ interview.candidate.email }}
Phone: {{ interview.candidate.phone|default:"Not provided" }}
Interview Details
Date: {{ interview.interview_date|date:"l, F j, Y" }}
Time: {{ interview.interview_time|time:"g:i A" }}
Status: {{ interview.status|title }}
{% if interview.zoom_meeting %}
Meeting Information
Meeting ID: {{ interview.zoom_meeting.meeting_id }}
Topic: {{ interview.zoom_meeting.topic }}
Duration: {{ interview.zoom_meeting.duration }} minutes
Join URL: {{ interview.zoom_meeting.join_url }}
{% endif %}
Back to Calendar {% if interview.status == 'scheduled' %} {% endif %} {% if interview.status != 'cancelled' and interview.status != 'completed' %} {% endif %}
{% endblock %}