{% set salarie = employee.record %} {% set photo_path = salarie.photo ? salarie.photo|trim : null %} {% set avatar_src = photo_path ? (photo_path starts with 'http://' or photo_path starts with 'https://' ? photo_path : asset(photo_path starts with '/' ? photo_path|slice(1) : photo_path)) : null %} {% set initials = (salarie.prenom|default('?')|first ~ salarie.nom|default('')|first)|upper %}
{% if avatar_src %} {{ salarie }} {% else %} {{ initials }} {% endif %} {{ salarie }} {{ salarie.employeeJob ?: 'Poste non renseigné' }} · {{ salarie.employeeService ?: 'Service non renseigné' }} {{ (employee.totalMinutes / 60)|number_format(1, ',', ' ') }} h semaine {% for alert in employee.alerts %} {{ alert }} {% endfor %}