{% extends 'base.html' %} {% block title %} Applicants {% endblock %} {% load static %} {% block content %}

Applicants for the {{ job.title }} position

{% for applicant in applicants %}

{{ applicant.user.get_full_name }}({{ applicant.get_status }})

Skills: {% for tag in applicant.user.profile.tags.all %} {{ tag.name }} {% endfor %}
Contact

Applied {{ applicant.created_at.astimezone }}

{% endfor %} {% if is_paginated %}
{% endif %}
{% endblock %}