{% set typeLabel = activite.type == 'APPEL' ? 'Appel' : (activite.type == 'REUNION' ? 'Réunion' : 'Rendez-vous') %} {% set typeClass = activite.type == 'APPEL' ? 'bg-info-subtle text-info' : (activite.type == 'REUNION' ? 'bg-success-subtle text-success' : 'bg-warning-subtle text-warning') %}
{{ typeLabel }} {{ activite.date ? activite.date|date('d/m/Y', 'Europe/Paris') : '' }} • {{ activite.heure ? activite.heure|date('H:i', 'Europe/Paris') : '' }}
{% if activite.lieu %}
{{ activite.lieu }}
{% endif %}
{% for participant in activite.participants %} {{ participant.prenom }} {{ participant.nom }} {% else %} Aucun participant {% endfor %}
Voir
{% if activite.compteRendu %}
{{ activite.compteRendu|slice(0, 180) }}{% if activite.compteRendu|length > 180 %}…{% endif %}
{% endif %}