{% extends 'base.html' %} {% block title %}Archived Candidates{% endblock title %} {% block content %}
# | Username | First Name | Last Name | 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 %} {% else %} Details Available {% endif %} |
No archived candidates available. |