{% extends "base.html" %} {% load static i18n %} {% block title %}Candidates - {{ block.super }}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}
| {% trans "Name" %} | {% trans "Email" %} | {% trans "Phone" %} | {% trans "Job" %} | {% trans "Major" %} | {% trans "Stage" %} | {% trans "created At" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|---|---|
| {{ candidate.name }} | {{ candidate.email }} | {{ candidate.phone }} | {{ candidate.job.title }} | {% if candidate.professional_category != 'Uncategorized' %} {{ candidate.professional_category }} {% endif %} | {{ candidate.stage }} | {{ candidate.created_at|date:"d-m-Y" }} |
{{ candidate.email }}
{{ candidate.phone|default:"N/A" }}
{{ candidate.job.title }}
{% trans "Create your first candidate profile or adjust your filters." %}
{% if user.is_staff %} {% trans "Add Candidate" %} {% endif %}