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

{% trans "Applicants for" %} "{{ job.title }}"

{% trans "Add New Applicant" %}

{{ job.title }}

{% trans "Department:" %} {{ job.department|default:"N/A" }}
{% trans "Location:" %} {{ job.get_location_display }}
{% trans "Job Type:" %} {{ job.get_job_type_display }}
{% trans "Workplace:" %} {{ job.get_workplace_type_display }}
{{ job.get_status_display }} {% if candidates %}

{% trans "Total Applicants" %}:

{{ candidates.count }}

{% endif %}
{% trans "Clear Filters" %}
{% if candidates %}
{% trans "Applicants" %} ({{ candidates.count }})
{% for candidate in candidates %} {% endfor %}
{% trans "Name" %} {% trans "Email" %} {% trans "Phone" %} {% trans "Stage" %} {% trans "Applied Date" %} {% trans "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 %}
{% trans "Selected" %}: 0
{% if is_paginated %} {% endif %}
{% else %}

{% trans "No applicants found" %}

{% trans "There are no candidates who have applied for this position yet." %}

{% trans "Add First Applicant" %}
{% endif %}
{% endblock %} {% block customJS %} {% endblock %}