{% extends 'base.html.twig' %} {% block title %}Archives - Bénéficiaires{% endblock %} {% block body %}
{% if app.user is defined and app.user %}
{{ app.user.prenom|slice(0, 1)|upper }}{{ app.user.nom|slice(0, 1)|upper }}

{{ app.user.prenom }} {{ app.user.nom }}

Déconnexion {% endif %}

Archives — Périodes terminées

{% if psychologues is defined and psychologues|length > 0 %}
{% endif %} {% if structures is defined and structures|length > 0 %}
{% endif %}
{% if selectedPsychologue or dateDebut or dateFin or selectedStructure %} Réinitialiser {% endif %}
{% if beneficiaires is defined and beneficiaires is not empty %}
{% for beneficiaire in beneficiaires %}
{% if beneficiaire.relation is defined and beneficiaire.relation %}
{{ beneficiaire.relation.prenom }} {{ beneficiaire.relation.nom }}
{% endif %}
Période terminée
{{ beneficiaire.civilite ? beneficiaire.civilite|lower|title ~ ' ' : '' }} {{ beneficiaire.nom }} {{ beneficiaire.prenom }}
{% if beneficiaire.dateAccueil %}
Accueilli le {{ beneficiaire.dateAccueil|date('d/m/Y') }}
{% else %}
Date d'accueil non renseignée
{% endif %}
{% endfor %}
{{ beneficiaires|length }} dossier(s) archivé(s)
{% else %}

Aucun dossier archivé

Les bénéficiaires dont la période est terminée apparaîtront ici.

Retour aux bénéficiaires
{% endif %}
{% endblock %}