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

All applicants who applied for your position

{% for applicant in applicants %}

{{ applicant.user.get_full_name }}

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

Contact

Applied {{ applicant.created_at.astimezone }}

{% endfor %} {% if is_paginated %}
{% else %}

You are end

{% endif %}
{% endblock %}