{% extends "base.html" %} {% block title %}Candidate Profile – {{ user.full_name }}{% endblock %} {% block content %}

{{ user.full_name }}

{{ user.email }} | {{ profile.phone or 'Not provided' }}

Profile {{ completeness }}%
Categories
{% if categories %}
{% for cat in categories %} {{ cat.category.name }} {% endfor %}
{% else %}

No categories selected.

{% endif %}
Address

{{ profile.address or 'Not provided' | safe }}

Documents
Curriculum Vitae {% if profile.cv_path %} Download {% else %} Not provided {% endif %}
Cover Letter {% if profile.cover_letter_path %} Download {% else %} Not provided {% endif %}
Certificates {% if profile.certificates_path %} Download {% else %} Not provided {% endif %}
Police Clearance {% if profile.police_clearance_path %} Download {% else %} Not provided {% endif %}
Education
{% if education %}
{% for edu in education %} {% endfor %}
DegreeField of StudyInstitutionPeriod
{{ edu.degree or '—' }} {{ edu.field_of_study or '—' }} {{ edu.institution or '—' }} {{ edu.start_date.strftime('%Y-%m') if edu.start_date else '' }} – {{ edu.end_date.strftime('%Y-%m') if edu.end_date else 'Present' }}
{% else %}

No education records added.

{% endif %}
Work Experience
{% if work_experience %}
{% for work in work_experience %} {% endfor %}
PositionCompanyPeriodDescription
{{ work.position or '—' }} {{ work.company_name or '—' }} {{ work.start_date.strftime('%Y-%m') if work.start_date else '' }} – {{ work.end_date.strftime('%Y-%m') if work.end_date else 'Present' }} {{ work.description or '' | truncate(100) }}
{% else %}

No work experience listed.

{% endif %}
References
{% if references %}
{% for ref in references %} {% endfor %}
NamePositionCompanyEmailPhone
{{ ref.name or '—' }} {{ ref.position or '—' }} {{ ref.company or '—' }} {{ ref.email or '—' }} {{ ref.phone or '—' }}
{% else %}

No references provided.

{% endif %}
{% endblock %}