NAME: {{ first_name }} {{ last_name }}
Email:
{{ email }} |
Mobile:
{{ mobile }} |
Place:
{{ location }} |
Skill / JD Match
|
{{ match_per }}%
|
Skills In Current Project
{% if current_skill_set != 'NA' %}
{% for skill_lst in current_skill_set %}
{% for skill in skill_lst %}
{% if skill %}
{{ skill }}
|
{% endif %}
{% endfor %}
{% endfor %}
{% endif %}
Carrier Stat
Total Experience
|
{% if experience_years %}
{{ experience_years }} yr
{% else %}
NA
{% endif %}
|
Duration With Current Employer
|
{{ latest_emp_duration }}
|
Job Changes
|
{{ job_changes }} |
Average Duration
|
{{ avg_duration }}yr
|
Min Duration
|
{{ min_duration }}
|
Max Duration
|
{{ max_duration }}
|
Skills
{% for skill_lst in skill_set %}
{% for skill in skill_lst %}
{{ skill }} |
{% endfor %}
{% endfor %}
Education
College |
CGPA |
Year Of Passing |
{% if college_name != 'NA' %}
{{ college_name }} |
{{ percentage }} |
{{ year }} |
{% endif %}
Experience
Company |
Experience |
{% for company in company_details %}
{{ company.0 }} |
{{ company.1 }} |
{% endfor %}
Project
Title |
Duration |
Skill |
{% if projects != 'NA' %}
{% for project in projects %}
{% if project.0 != 'NA' %}
{{ project.0 }}
|
{{ project.1 }} |
{{ project.2 }} |
{% endif %}
{% endfor %}
{% endif %}
Matching Project Description
{% for project in matching_projects %}
Project{{ forloop.counter }}: {{ project.0}}
Description:
{{ project.1 }}.
{% endfor %}