{% extends "base.html" %} {% load static i18n %} {% block title %}Candidates - {{ block.super }}{% endblock %} {% block content %}
| {% trans "Name" %} | {% trans "Email" %} | {% trans "Phone" %} | {% trans "Job" %} | {% trans "Applied" %} | {% trans "Created" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|---|
| {{ candidate.name }} | {{ candidate.email }} | {{ candidate.phone }} | {{ candidate.job.title }} | {{ candidate.applied|yesno:"Yes,No" }} | {{ candidate.created_at|date:"M d, Y" }} |
{% include "icons/view.html" %}
{% if user.is_staff %}
{% include "icons/edit.html" %}
{% endif %}
|
{% trans "No candidates found." %}
{% if user.is_staff %} {% trans "Add Your First Candidate" %} {% endif %}