{% extends 'base.html' %} {% block title %} Applicants {% endblock %} {% load static %} {% block styles %} {% endblock %} {% block content %} {{ applicant.user.get_full_name }} Applied for: {{ applicant.job.title }} {% if applicant.cv.name %} Prev Page Next Page Page of {% else %} CV not available {% endif %} About: {{ applicant.user.get_full_name }} Skills: {% for tag in applicant.user.profile.tags.all %} {{ tag.name }} {% endfor %} Gender: {{ applicant.user.gender }} Email: {{ applicant.user.email }} Status: {% if applicant.status == 1 %} Pending {% elif applicant.status == 2 %} Accepted {% elif applicant.status == 3 %} Rejected {% endif %} {{ job.company_description }} {% if applicant.status == 1 %} Send response × {% csrf_token %} Status Accepted Rejected Comment {{ applicant.comment|default_if_none:"" }} {% endif %} {% endblock %}
{{ job.company_description }}