{% extends "base.html" %} {% load static i18n %} {% block title %}{{ job.title }} - Applicants{% endblock %} {% block customCSS %} {% endblock %} {% block content %}
| {% 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" }} |
{% trans "Phone" %}: {{ candidate.phone|default:"N/A" }}
{% trans "Applied Date" %}: {{ candidate.created_at|date:"M d, Y" }}
{% trans "There are no candidates who have applied for this position yet." %}
{% trans "Add First Applicant" %}