{% extends "base.html" %} {% load static i18n %} {% block title %}{% trans "Interviews" %} - {{ block.super }}{% endblock %} {% block content %}

{% trans "Interviews" %} ({{ interviews.paginator.count }})

{% include 'includes/search_form.html' %}
{% if interviews %} {# --- MOBILE CARD VIEW --- #}
{% for interview in interviews %}
{{ interview.application.name }}
{{ interview.status|title }}
{{ interview.job.title }}
{{ interview.application.email }}
{{ interview.application.phone }}
{{ interview.interview_date|date:"d-m-Y" }} {{ interview.interview_time|date:"H:i A" }}
{% if interview.interview.location_type == 'Remote' %} {% else %} {% endif %} {{ interview.interview.location_type }}
{% trans "View Details" %} {% if interview.interview.location_type == 'Remote' and interview.interview.join_url %} {% trans "Join" %} {% endif %}
{% endfor %}
{# --- DESKTOP TABLE VIEW --- #} {% include "includes/paginator.html" %} {% else %}

{% trans "No Interviews Found" %}

{% trans "There are no interviews scheduled yet." %}

{% endif %}
{% endblock %}