{% extends "base.html" %} {% block title %}Candidate Profile – {{ user.full_name }}{% endblock %} {% block content %}
{{ user.email }} | {{ profile.phone or 'Not provided' }}
No categories selected.
{% endif %}{{ profile.address or 'Not provided' | safe }}
| Degree | Field of Study | Institution | Period |
|---|---|---|---|
| {{ 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' }} |
No education records added.
{% endif %}| Position | Company | Period | Description |
|---|---|---|---|
| {{ 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) }} |
No work experience listed.
{% endif %}| Name | Position | Company | Phone | |
|---|---|---|---|---|
| {{ ref.name or '—' }} | {{ ref.position or '—' }} | {{ ref.company or '—' }} | {{ ref.email or '—' }} | {{ ref.phone or '—' }} |
No references provided.
{% endif %}