{% extends "base.html" %} {% load static i18n %} {% block title %}Candidates - {{ block.super }}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}

{% trans "Candidate Profiles" %}

{# The search form structure should be updated to align with the job_list style if possible #} {% include "includes/search_form.html" with search_query=search_query %} {% if user.is_staff %} {% trans "Add New Candidate" %} {% endif %}
{% if candidates %}
{% for candidate in candidates %} {% endfor %}
{% 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" }}
{% if user.is_staff %} {% endif %}
{% if is_paginated %} {% endif %} {% else %}

{% trans "No candidates found." %}

{% trans "Start by adding a new profile or adjusting your search filters." %}

{% if user.is_staff %} {% trans "Add Your First Candidate" %} {% endif %}
{% endif %}
{% endblock %}