{% extends "base.html" %} {% load static i18n %} {% block title %}{{ job.title }} - Applicants{% endblock %} {% block content %}

Applicants for "{{ job.title }}"

Add New Applicant
{{ job.title }}
Department:
{{ job.department|default:"Not specified" }}
Location:
{{ job.get_location_display }}
Job Type:
{{ job.get_job_type_display }}
Workplace:
{{ job.get_workplace_type_display }}
{{ job.get_status_display }} {% if candidates %}
Total Applicants:

{{ candidates.count }}

{% endif %}
{% if candidates %}
{# View Switcher #} {% include "includes/_list_view_switcher.html" with list_id="job-candidates-list" %} {# Table View (Default) #}
Applicants ({{ candidates.count }})
{% for candidate in candidates %} {% endfor %}
Name Email Phone Stage Applied Date Actions
{{ candidate.first_name }} {{ candidate.last_name }}
{{ candidate.email }} {{ candidate.phone|default:"-" }} {{ candidate.stage }} {{ candidate.created_at|date:"M d, Y" }}
{% if user.is_staff %} {% endif %}
{# Card View #}
{% for candidate in candidates %}
{{ candidate.first_name }} {{ candidate.last_name }}
{{ candidate.email }}

{% trans "Phone" %}: {{ candidate.phone|default:"N/A" }}
{% trans "Stage" %}: {{ candidate.stage }}
{% trans "Applied Date" %}: {{ candidate.created_at|date:"M d, Y" }}

{% endfor %}
{% else %}

No applicants found

There are no candidates who have applied for this position yet.

Add First Applicant
{% endif %} {% include "includes/delete_modal.html" %} {% endblock %} {% block extra_js %} {% endblock %}