{% load i18n curriculum %}
{{ resume.firstname }} {{ resume.lastname }} - {{ resume.title }}

{{ resume.resume }}
{% trans "Projects" %}
{% for project in projects %} {{ project.project.url|shortlink:project|safe }} {% daterange_display project.start_year project.start_month project.end_year project.end_month %}
{{ project.contribution|linebreaksbr }}

{% endfor %}
{% trans "Experiences" %}
{% for experience in experiences %} {{ experience }} {% daterange_display experience.start_year experience.start_month experience.end_year experience.end_month %}
{{ experience.description|linebreaksbr }}

{% endfor %}
{% trans "Trainings" %}
{% for training in trainings %} {{ training.degree }} in {{ training.topic }} {% daterange_display training.year training.month %}

{% endfor %}
{% trans "Certifications" %}
{% for certification in certifications %} {{ certification }} {% daterange_display certification.start_year certification.start_month %} {% endfor %}