{% if anonyme == 'false' %}
{% if logo != null %} {% else %} {%endif%}

{{ profil.lastname }} {{ profil.name }}

{{ profil.poste }}

{{ profil.email }}

{{ profil.phone }}

{{ profil.address }}

{%endif%}

Formation

{% for education in profil.education %}

{{ education.degree }}

{{ education.school }} : {{ education.fromDateEdu | date('Y-m-d') }} - {{ education.toDateEdu |date('Y-m-d')}}

{{ education.descriptionEdu }}

{% endfor %}

Experience professionnelle

{% for exp in profil.workExperiences %}

{{ exp.poste }}

{{ exp.entreprise }} : {{ exp.fromDate | date('Y-m-d') }} - {{ exp.toDate |date('Y-m-d')}}

{{ exp.description }}

{% endfor %}

Compétences

{% for c in skills |slice(0, (skills|length/2))%}

{{ c.skill }}

{% for i in 1..5 %} {% if i<= c.rating %} {% else %} {% endif %} {% endfor %}
{% endfor %}
{% for c in skills|slice((skills|length/2),(skills|length) ) %}

{{ c.skill }}

{% for i in 1..5 %} {% if i<= c.rating %} {% else %} {% endif %} {% endfor %}
{% endfor %}

Langues

{% for l in langues %}

{{ l.name }}

{% for i in 1..5 %} {% if i<= l.rating %} {% else %} {% endif %} {% endfor %}
{% endfor %}