{% extends 'base.html' %} {% load static %} {% block title %}Candidate List{% endblock title %} {% block content %} {% block styles %} {% endblock styles %}

Candidate List

{% for candidate in candidates %} {% endfor %}
First Name Last Name Skills Details Restricted Actions
{{ candidate.user.first_name }} {{ candidate.user.last_name }} {{ candidate.skills }} {% if not candidate.cv_visibility %} Restricted {% else %} Visible {% endif %} {% if candidate.cv_visibility %} View Details {% else %}
{% csrf_token %}
{% endif %}
{% endblock content %}