{# Partial: User Context Section #} {% if context %}

Contexte utilisateur

{# Profil de base #} {% if context.firstName or context.jobTitle or context.industry %}
Profil
{% if context.firstName %}
Prenom
{{ context.firstName }}
{% endif %} {% if context.fullName %}
Nom complet
{{ context.fullName }}
{% endif %} {% if context.jobTitle %}
Metier
{{ context.jobTitle }}
{% endif %} {% if context.industry %}
Secteur
{{ context.industry }}
{% endif %} {% if context.experienceLevel %}
Niveau d'experience
{{ context.experienceLevel|capitalize }}
{% endif %} {% if context.responseStyle %}
Style de reponse prefere
{{ context.responseStyle|capitalize }}
{% endif %} {% if context.language %}
Langue
{{ context.language == 'fr' ? 'Francais' : 'Anglais' }}
{% endif %} {% if context.goals %}
Objectifs
{{ context.goals }}
{% endif %}
{% endif %} {# Contact professionnel #} {% if context.phoneNumber or context.emailPro or context.letterAddress %}
Contact et courrier
{% if context.phoneNumber %}
Telephone
{{ context.phoneNumber }}
{% endif %} {% if context.emailPro %}
Email professionnel
{{ context.emailPro }}
{% endif %} {% if context.professionalTitle %}
Titre professionnel
{{ context.professionalTitle }}
{% endif %} {% if context.letterAddress %}
Adresse
{{ context.letterAddress }}
{{ context.letterPostalCode }} {{ context.letterCity }}
{% endif %} {% if context.siretNumber %}
SIRET
{{ context.siretNumber }}
{% endif %} {% if context.signatureBlock %}
Bloc signature
{{ context.signatureBlock|nl2br }}
{% endif %}
{% endif %} {# Education #} {% if context.isStudent or context.educationLevel %}
Education
{% if context.educationLevel %}
Niveau d'etudes
{{ context.educationLevel }}
{% endif %} {% if context.currentYear %}
Annee actuelle
{{ context.currentYear }}
{% endif %} {% if context.schoolType %}
Type d'etablissement
{{ context.schoolType }}
{% endif %} {% if context.fieldOfStudy %}
Domaine d'etudes
{{ context.fieldOfStudy }}
{% endif %} {% if context.specializations|default([])|length > 0 %}
Specialisations
{{ context.specializations|join(', ') }}
{% endif %} {% if context.examPreparations|default([])|length > 0 %}
Preparations examens
{{ context.examPreparations|join(', ') }}
{% endif %} {% if context.examDate %}
Date d'examen
{{ context.examDate }}
{% endif %} {% if context.learningStyle %}
Style d'apprentissage
{{ context.learningStyle|capitalize }}
{% endif %} {% if context.learningDifficulties|default([])|length > 0 %}
Difficultes d'apprentissage
{{ context.learningDifficulties|join(', ') }}
{% endif %}
{% endif %} {# Professionnel #} {% if context.isProfessional or context.companyName %}
Contexte professionnel
{% if context.companyName %}
Entreprise
{{ context.companyName }}
{% endif %} {% if context.companySize %}
Taille entreprise
{{ context.companySize }}
{% endif %} {% if context.yearsInRole %}
Annees dans le poste
{{ context.yearsInRole }} an(s)
{% endif %} {% if context.managementLevel %}
Niveau management
{{ context.managementLevel|capitalize }}
{% endif %} {% if context.teamSize %}
Taille equipe
{{ context.teamSize }} personne(s)
{% endif %} {% if context.workContext %}
Contexte de travail
{{ context.workContext }}
{% endif %} {% if context.professionalGoals %}
Objectifs professionnels
{{ context.professionalGoals }}
{% endif %}
{% endif %} {# Sante & Sport #} {% if context.birthDate or context.heightCm or context.sportActivities %}
Sante et sport
{% if context.birthDate %}
Date de naissance
{{ context.birthDate }}{% if context.age %} ({{ context.age }} ans){% endif %}
{% endif %} {% if context.biologicalSex %}
Sexe biologique
{{ context.biologicalSex|capitalize }}
{% endif %} {% if context.heightCm %}
Taille
{{ context.heightCm }} cm
{% endif %} {% if context.weightKg %}
Poids
{{ context.weightKg }} kg{% if context.bmi %} (IMC: {{ context.bmi|number_format(1) }}){% endif %}
{% endif %} {% if context.activityLevel %}
Niveau d'activite
{{ context.activityLevel }}
{% endif %} {% if context.sportActivities %}
Activites sportives
{{ context.sportActivities }}
{% endif %} {% if context.healthGoals %}
Objectifs sante
{{ context.healthGoals }}
{% endif %} {% if context.healthConditions %}
Conditions de sante
{{ context.healthConditions }}
{% endif %}
{% endif %} {# Additional context #} {% if context.additionalContext %}
Contexte additionnel

{{ context.additionalContext|nl2br }}

{% endif %}
{% endif %}