{% extends 'base.html' %} {% load static i18n %} {% block title %}{% trans "Interviews" %} - ATS{% endblock %} {% block customCSS %} {% endblock %} {% block content %}
{% trans "Job" %}:
{{ interview.job.title }}
{% trans "Date" %}: {{ interview.interview_date|date:"M d, Y" }}
{% trans "Time" %}: {{ interview.interview_time|time:"H:i A" }}
{# --- Type/Location --- #}
{% trans "Type" %}: {{ interview.interview.location_type }}
{% comment %} {% if interview.interview.location_type == 'Remote' %}
{# Using interview.join_url directly if available, assuming interview is the full object #}
{% trans "Link" %}: {% if interview.interview.join_url %}Join Meeting{% else %}N/A{% endif %}
{% else %}
{% trans "Location" %}: {{ interview.interview.location_details|default:"Onsite" }}
{% endif %} {% endcomment %}
{% trans "Start by setting the interview stage for an application." %}
{# Add button if needed, otherwise rely on the header button #}