{% extends 'base.html.twig' %} {% block title %}Fiche collaborateur{% endblock %} {% block body %}

Fiche collaborateur - {{ collaborator.fullName }}

{% if is_granted('ROLE_ADMIN') %} {% endif %}
{% if collaborator.associate or collaborator.manager or not collaborator.departmentsInChargeOf.empty or not collaborator.partnersInChargeOf.empty %} {% endif %} {% if collaborator.cNCCRegistered %} {% endif %} {% if collaborator.oECRegistered %} {% endif %}
Statut {% if collaborator.associate %} Associé du Groupe {% endif %} {% if collaborator.manager %} Responsable de Bureau {% endif %} {% for department in collaborator.departmentsInChargeOf %} Responsable de la commission {{ department.name }} {% endfor %} {% for partner in collaborator.partnersInChargeOf %} Responsable de {{ partner.name }} {% endfor %}
Photo {% if collaborator.picture %} Photo du collaborateur {% else %} Photo non renseignée {% endif %}
Genre {{ collaborator.gender }}
Nom {{ collaborator.lastName }}
Prénom {{ collaborator.firstName }}
Numéro de téléphone {{ collaborator.phoneNumber }}
Adresse mail {{ collaborator.mail }}
Bureau(x) {% for office in collaborator.offices %} {{ office.name }} {%- if not loop.last -%}, {%- endif -%} {% endfor %} {% for partner in collaborator.partners %} {{ partner.name }} {%- if not loop.last -%}, {%- endif -%} {% endfor %}
Fonction {{ collaborator.jobFunctions | join(', ') }}
Spécificités métier {{ collaborator.competencies | join(', ') }}
Enregistré auprès de la Compagnie Nationale des Commissaires aux Comptes
Enregistré auprès de l'Ordre des Experts Comptables
Langues parlées {{ collaborator.spokenLanguages | join(', ') }}
Loisirs {{ collaborator.hobbies | join(', ') }}
Parcours professionnel {{ collaborator.workExperiences | nl2br }}
À propos {{ collaborator.about | nl2br }}
{% endblock %}