{% load curriculum static i18n %} {{ resume }}

{{ resume.firstname }} {{ resume.lastname }}

{{ resume.title }}

{{ resume.resume }}

{% trans "Contact" %}

{% trans "Location" %}: {{ resume.city|default:"" }} {{ resume.country|default:"" }}
{{ resume.address }}

{% if resume.phone %}

{% trans "Phone" %}: {{ resume.phone }}

{% endif %} {% if resume.email %}

{% trans "Email" %}: {{ resume.email }}

{% endif %} {% if resume.website %}

{% trans "Website" %}: {{ resume.website }}

{% endif %}
{% if resume.website %}

{% if resume.image %}{% endif %} {% if resume.website %}{% endif %}

{% endif %} {% if resume.email %}{% endif %} {% if resume.twitter %}{% endif %} {% if resume.stackoverflow %}{% endif %} {% if resume.github %}{% endif %} {% if resume.google %}{% endif %} {% if resume.linkedin %}{% endif %} {% if resume.skype %}{% endif %}
{% if skills %} {% regroup skills by category as skills_grouped %}

{% trans "Skills" %}

{% if resume.skill_summary %} {{ resume.skill_summary|linebreaksbr }} {% endif %}
{% for skill_subgroup in skills_grouped %}

{{ skill_subgroup.grouper }}

{% for skill in skill_subgroup.list %} {{ skill }} {% endfor %}
{% endfor %}
{% endif %} {% if experiences %}

{% trans "Experiences" %}

{% if resume.experience_summary %} {{ resume.experience_summary|linebreaksbr }} {% endif %}
{% for experience in experiences %}

{{ experience }}

{% daterange_display experience.start_year experience.start_month experience.end_year experience.end_month %}

{{ experience.description|linebreaksbr }}
{% endfor %}
{% endif %} {% if trainings %}

{% trans "Trainings" %}

{% if resume.training_summary %} {{ resume.training_summary|linebreaksbr }} {% endif %}
{% for training in trainings %}

{{ training.degree }} in {{ training.topic }}

{% daterange_display training.year training.month %}

{{ training.description|linebreaks }}
{% endfor %}
{% endif %} {% if projects %}

{% trans "Projects" %}

{% if resume.project_summary %} {{ resume.project_summary|linebreaksbr }} {% endif %}
{% for project in projects %}

{{ project }} {% if project.project.url %}{% endif %}

{% daterange_display project.start_year project.start_month project.end_year project.end_month %}

{{ project.contribution|linebreaksbr }}
{% endfor %}
{% endif %} {% if certifications %}

{% trans "Certifications" %}

{% for certification in certifications %}

{{ certification }}

{% daterange_display certification.start_year certification.start_month certification.end_year certification.end_month %}

{{ certification.certification.description|linebreaksbr }}
{% endfor %}
{% endif %} {% if resume.hobbies or resume.driving_license %}

{% trans "Miscellaneous" %}

{% if resume.hobbies %}

{% trans "Hobbies" %}

{{ resume.hobbies }}
{% endif %}
{% if resume.driving_license %}

{% trans "Driving license" %}

{{ resume.driving_license }}
{% endif %}
{% endif %}

{% trans "That's me !" %}

{% trans "Press ESC for get an overview" %}

{% if resume.website %}

{% trans "or" %}

{% trans "Go back to" %} {% trans "my website" %}

{% endif %}