{% extends "cv/base.html" %} {% block body_id %}curriculum{% endblock body_id %} {% block aside %} {% endblock aside %} {% block content %}
{% if description %}

{{ translations.cv_curriculum.about_heading }}

{{ description }}

{% endif %} {% if work_experiences | length > 0 %}

{{ translations.cv_curriculum.experience_heading }}

{% for work_experience in work_experiences %}

{{ work_experience.company }}

{{ work_experience.location }}

{% for role in work_experience.roles %}
{{ role.title }}

{{ role.start_date }} - {{ role.end_date }}{% if role.duration %} ({{ role.duration }}){% endif %}

{{ role.description }}

{% endfor %}
{% endfor %} {% if has_website_cv and work_experiences | length > 4 %}

{{ translations.cv_curriculum.more_experiences | replace(from='{domain}', to=website_cv.domain) }}

{% endif %}
{% endif %} {% if other_projects | length > 0 %}

{{ translations.cv_curriculum.other_projects_heading }}

{% for project in other_projects %}

{{ project.title }}

{{ project.start_date }} - {{ project.end_date }}{% if project.duration %} ({{ project.duration }}){% endif %}

{{ project.description }}

{{ translations.cv_curriculum.project_link }}
{% endfor %}
{% endif %} {% if educations | length > 0 %}

{{ translations.cv_curriculum.education_heading }}

{% for education in educations %}

{{ education.institute }}

{{ education.course_of_study }}

{{ education.educational_qualification }}

{{ education.date_start }} - {{ education.date_end }}{% if education.duration %} ({{ education.duration }}){% endif %}

{{ education.description }}

{% if education.vote %}

{{ translations.cv_curriculum.vote }}: {{ education.vote }}

{% endif %}
{% endfor %}
{% endif %} {% if skills | length > 0 %}

{{ translations.cv_curriculum.skills_heading }}

{% for skill in skills %}
{{ skill.icon_svg | default(value="") | safe }}
{% endfor %}
{% endif %} {% if courses_certifications | length > 0 %}

{{ translations.cv_curriculum.courses_heading }}

{% for courses_certification in courses_certifications %}

{{ courses_certification.title }}

{{ translations.cv_curriculum.course_released_by }}: {{ courses_certification.released_by }}

{{ translations.cv_curriculum.course_released_on }} {{ courses_certification.released_on }}

{{ translations.cv_curriculum.certificate_link }}
{% endfor %} {% if has_website_cv and courses_certifications | length > 4 %}

{{ translations.cv_curriculum.courses_more_info | replace(from='{domain}', to=website_cv.domain) }}

{% endif %}
{% endif %}
{% if contact_form_enabled %}

{{ translations.cv_curriculum.contact_heading }}

{{ translations.cv_curriculum.contact_description }}

{% if contact_form.feedback %}{{ contact_form.feedback.message }}{% endif %}

{% endif %} {% endblock content %}