{% extends "base.html" %} {% load static i18n %} {% block title %}Candidates - {{ block.super }}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}
| {% trans "Name" %} | {% trans "Email" %} | {% comment %}{% trans "Phone" %} | {% endcomment %}{% trans "Job" %} | {% trans "Major" %} | {% trans "Stage" %} | {% trans "Hiring Source" %} | {% trans "created At" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|---|---|---|
| {{ candidate.name }} | {{ candidate.email }} | {% comment %}{{ candidate.phone }} | {% endcomment %}{{ 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 %} {{ candidate.hiring_agency.name }} {% else %} - {% endif %} | {{ candidate.created_at|date:"d-m-Y" }} |
{{ candidate.email }}
{{ candidate.phone|default:"N/A" }}
{{ candidate.job.title }}
{% if candidate.hiring_agency %}
{{ candidate.hiring_agency.name }}
{% endif %}
{% trans "Create your first candidate profile or adjust your filters." %}
{% if user.is_staff %} {% trans "Add Candidate" %} {% endif %}