{% 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 %} {% if page_obj.has_previous %} « {% else %} « {% endif %} {% for i in page_obj.paginator.page_range %} {% if page_obj.number == i %} {{ i }} {% else %} {{ i }} {% endif %} {% endfor %} {% if page_obj.has_next %} » {% else %} » {% endif %} {% else %} You are end {% endif %} {% endblock %}
Applied position: {{ applicant.job.title }}
Applied {{ applicant.created_at.astimezone }}