{% extends "base.html" %} {% block extrastyle %} {% endblock %} {% block boutons_droite %} {% include './famille_boutons.html' with active='agenda' %} {% endblock %} {% block content %}
Famille {{ famille.nom }} - {{ famille.adresse }}
Dossier de suivi
{% csrf_token %} {% for error in form.non_field_errors %}
{{ error }}
{% endfor %}
ÉVALUATION
ACCOMPAGNEMENT
CLÔTURE DU DOSSIER
Demande déposée le

{{ form.date_demande.errors }}{{ form.date_demande }}

Début de l’évaluation le

{{ form.date_debut_evaluation.errors }}{{ form.date_debut_evaluation }}

Fin de l’évaluation le

{{ form.date_fin_evaluation.errors }}{{ form.date_fin_evaluation }}

{% if mode == 'evaluation' %}
Si abandon du dossier:
Motif de fin

{{ form.motif_fin_suivi.errors }}{{ form.motif_fin_suivi }}

{% endif %}

Évaluation PDF

Début de l'accompagnement le {{ form.date_debut_suivi.errors }}{{ form.date_debut_suivi }} {% if famille.suivi.date_debut_suivi and not famille.suivi.date_fin_suivi %}
Depuis {{ famille.suivi.date_debut_suivi|timesince }}
{% endif %}
{% for niveau in niveaux %}
Niv. d’intervention {{niveau.niveau_interv }} du {{ niveau.date_debut|date:"d.m.Y" }} au {{ niveau.date_fin_calc|date:"d.m.Y"|default:'--'}}
{% endfor %}
Accompagnement(s) temporaire(s)
{% for intervention in interv_temporaires %}
{{ intervention.intervenant.nom_prenom }} ({{ intervention.role }}) ({{ intervention.date_debut|date:"d.m.Y" }} - {{intervention.date_fin|date:"d.m.Y" }})
{% empty %} - {% endfor %}
BILANS ET RÉSUMÉS

{% include "partial_show_docs.html" with docs=bilans_et_rapports %}

{% if can_edit and mode == 'suivi' %}

Ajouter un bilan Ajouter un résumé

{% endif %}
{% if mode == 'suivi' %}
{% include 'partial_agenda_cloture.html' %}
{% endif %} {% if mode == 'reactivation' %}
Fin de l’accompagnement le

{{ object.date_fin_suivi }}

Motif de fin

{{ object.get_motif_fin_suivi_display }}

Destination

{{ object.famille.get_destination_display }}

{% if famille|can_be_reactivated:user %} {% endif %} {% endif %}
{% if famille|can_edit:user %} {% include "actions.html" %} {% endif %}
{% endblock %}