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

{% trans "Applications List" %}

{% trans "Add New Application" %}
{% include 'includes/search_form.html' %}
{% url 'application_list' as candidate_list_url %}
{% if search_query %}{% endif %}
{# Buttons Group (pushed to the right/bottom) #}
{% if job_filter or stage_filter or search_query %} {% trans "Clear" %} {% endif %}
{% if applications %}
{# View Switcher - list_id must match the container ID #} {% include "includes/_list_view_switcher.html" with list_id="candidate-list" %} {# Table View (Default for Desktop) #}
{% for candidate in applications %} {% endfor %}
{% trans "Name" %} {% trans "Email" %} {% trans "Job" %} {% trans "Major" %} {% trans "Stage" %} {% trans "Hiring Source" %} {% trans "Created At" %} {% trans "Actions" %}
{{ candidate.name }} {{ candidate.email }} {{ candidate.job.title }} {% if candidate.is_resume_parsed %} {% if candidate.professional_category != 'Uncategorized' %} {{ candidate.professional_category }} {% endif %} {% else %} {% endif %} {{ candidate.stage }} {% if candidate.hiring_agency and candidate.hiring_source == 'Agency' %} {{ candidate.hiring_agency.name }} {% else %} {{ candidate.hiring_source }} {% endif %} {{ candidate.created_at|date:"d-m-Y" }}
{% if user.is_staff %} {% endif %}
{# Card View (Default for Mobile) #}
{% for candidate in applications %}
{{ candidate.name }}
{{ candidate.stage }}

{{ candidate.email }} {{ candidate.phone|default:"N/A" }} {{ candidate.created_at|date:"d-m-Y" }} {{ candidate.job.title }} {% if candidate.hiring_agency %} {{ candidate.hiring_agency.name }} {% endif %}

{% trans "View" %} {% if user.is_staff %} {% trans "Edit" %} {% endif %}
{% endfor %}
{# Pagination (Standardized to Reference) #} {% include "includes/paginator.html" %} {% else %}

{% trans "No application found" %}

{% trans "Create your first application." %}

{% if user.is_staff %} {% trans "Add Application" %} {% endif %}
{% endif %}
{# ------------------------------------------------------------------------------------------ #} {# DELETE CONFIRMATION MODAL (Bootstrap 5) #} {# ------------------------------------------------------------------------------------------ #} {% endblock %} {% block customJS %} {% endblock %}