{% 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 "Stage" %} | {% trans "Created" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|---|
| {{ candidate.name }} | {{ candidate.email }} | {{ candidate.phone }} | {{ candidate.job.title }} | {{ candidate.stage }} | {{ candidate.created_at|date:"M d, 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 %}