{% 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 %}
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 %}
{% 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 %}