{% extends "base.html" %} {% load static i18n %} {% block title %}{% trans "Interviews" %} - {{ block.super }}{% endblock %} {% block content %}
| {% trans "Candidate" %} | {% trans "Job" %} | {% trans "Date & Time" %} | {% trans "Type" %} | {% trans "Status" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|
|
{{ interview.application.name }}
{{ interview.application.email }}
{{ interview.application.phone }}
|
{{ interview.job.title }}
{{ interview.job.department }}
|
{{ interview.interview_date|date:"d-m-Y" }}
{{ interview.interview_time|date:"H:i A" }}
|
{% if interview.interview.location_type == 'Remote' %} {% trans "Remote" %} {% else %} {% trans "Onsite" %} {% endif %} | {{ interview.status|upper }} |
{% trans "There are no interviews scheduled yet." %}