{% extends 'base.html' %} {% block title %}Archived Candidates{% endblock title %} {% block content %}

Archived Candidates

Back to Message Box
{% csrf_token %}
{% for candidate in archived_candidates %} {% empty %} {% endfor %}
# Username First Name Last Name Email Skills Resume Actions
{{ forloop.counter }} {{ candidate.user.username }} {{ candidate.first_name }} {{ candidate.last_name }} {% if request.user in candidate.allowed_employers.all or candidate.cv_visibility %} {{ candidate.user.email }} {% else %} Restricted {% endif %} {{ candidate.skills }} {% if request.user in candidate.allowed_employers.all or candidate.cv_visibility %} View Resume {% else %} Restricted {% endif %} {% if request.user not in candidate.allowed_employers.all and not candidate.cv_visibility %}
{% csrf_token %}
{% else %} Details Available {% endif %}
{% csrf_token %}
No archived candidates available.
{% endblock content %}