{% load static %} {{ personal_info.name|default:"CV" }}
Back Download
Back Download
{% if personal_info.profile_image %}
{{ personal_info.name }}
{% endif %}

{{ personal_info.name|default:"Your Name" }}

{{ personal_info.title|default:"Data Analyst" }}

{% if personal_info.email %}
{{ personal_info.email }}
{% endif %} {% if personal_info.phone %}
{{ personal_info.phone }}
{% endif %} {% if personal_info.address %}
{{ personal_info.address }}
{% endif %}
{% if personal_info.linkedin %} LinkedIn {% endif %} {% if personal_info.github %} GitHub {% endif %}
{% if personal_info.bio %}

Professional Summary

{{ personal_info.bio }}

{% endif %}

Technical Skills

{% for category, category_skills in skills.items %}

{{ category }}

{% for skill in category_skills %} {{ skill.name }} {% endfor %}
{% endfor %}
{% if work_experience %}

Work Experience

{% for exp in work_experience %}

{{ exp.position }}

{{ exp.company }}
{{ exp.start_date|date:"M Y" }} - {% if exp.end_date %}{{ exp.end_date|date:"M Y" }}{% else %}Present{% endif %}
{% if exp.location %}
{{ exp.location }}
{% endif %}
{% if exp.description %}

{{ exp.description }}

{% endif %} {% if exp.highlights %}
    {% for highlight in exp.get_highlights_list %}
  • {{ highlight }}
  • {% endfor %}
{% endif %} {% if exp.technologies %}
{% for tech in exp.get_technologies_list %} {{ tech }} {% endfor %}
{% endif %}
{% endfor %}
{% endif %} {% if education %}

Education

{% for edu in education %}

{{ edu.institution }}

{{ edu.degree }} in {{ edu.field_of_study }}

{% if edu.gpa %}

GPA: {{ edu.gpa }}

{% endif %}
{{ edu.start_date|date:"M Y" }} - {% if edu.end_date %}{{ edu.end_date|date:"M Y" }}{% else %}Present{% endif %}
{% if edu.location %}
{{ edu.location }}
{% endif %}
{% if edu.description %}

{{ edu.description }}

{% endif %}
{% endfor %}
{% endif %}

Certifications

{% for cert in certifications %}

{{ cert.name }}

{{ cert.issuer }} {{ cert.date_earned|date:"F Y" }}
{% endfor %}
{% if projects %}

Key Projects

{% for project in projects %}

{{ project.title }}

{{ project.description }}

{% for tech in project.technology.split %} {{ tech }} {% endfor %}
{% endfor %}
{% endif %}