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