{% extends "base.html" %} {% block title %}View Job Seeker{% endblock %} {% block content %}

{{ user.full_name }}

{{ user.email }} | {{ profile.phone }}

Address: {{ profile.address }}

Profile Completion: {{ completeness }}%

Categories
    {% for cat in categories %}
  • {{ cat.category.name }}
  • {% endfor %}
Education
{% for e in education %}{% endfor %}
DegreeFieldInstitutionPeriod
{{ e.degree }}{{ e.field_of_study }}{{ e.institution }}{{ e.start_date }} - {{ e.end_date }}
Work Experience
{% for w in work_experience %}{% endfor %}
PositionCompanyPeriodDescription
{{ w.position }}{{ w.company_name }}{{ w.start_date }} - {{ w.end_date }}{{ w.description }}
References
{% for r in references %}{% endfor %}
NamePositionCompanyEmailPhone
{{ r.name }}{{ r.position }}{{ r.company }}{{ r.email }}{{ r.phone }}
{% endblock %}