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

All applicants who applied for your positions

{% 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 }}

{#
#} {#
#} {#

{{ applicant.user.get_full_name }}

#} {#

Applied position: {{ applicant.job.title }}

#} {# #} {# Contact#} {# #} {#

#} {# Applied {{ applicant.created_at.astimezone }}#} {#

#} {#
#} {#

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