{% extends "base.html" %} {% block boutons_droite %} {% include './famille_boutons.html' with active='suivi' %} {% endblock %} {% block content %}
Famille {{ famille.nom }} - {{ famille.adresse }}
Dossier de suivi
{% csrf_token %}
Enfant(s) suivi(s) {% for enfant in famille.membres_suivis %} {% endfor %}
{{ enfant.nom_prenom }} {{ enfant.age|floatformat }} ans {{ enfant.formation.info_scol }}
{{ form.equipe }}
{{ form.service_annonceur }}
{{ form.service_orienteur }}
{% if can_edit %} + {% endif %} {% for interv in intervenants %} {% if not interv.date_fin %}
{{ interv.role }}: {{ interv.intervenant.nom_prenom }} {% if can_edit %} {% endif %}
{% else %}
{{ interv.role }}: {{ interv.intervenant.nom_prenom }}
{% endif %} {% endfor %}
{{ form.ope_referent }}
{{ form.ope_referent_2 }}
{{ form.mandat_ope }}
{% if can_edit %} + {% endif %} {% for niv in niveaux %} {% endfor %}
DuAuNiveau d'interv.
{{ niv.date_debut|date:"d.m.Y" }} {{ niv.date_fin_calc|date:"d.m.Y"|default:"---" }} {{ niv.niveau_interv }}
{{ form.demande_prioritaire }}
{{ form.heure_coord }} {{ form.heure_coord.label_tag|strip_colon }}
Motif standardisé:
{{ form.motif_demande.errors }}{{ form.motif_demande }}
Motif de la demande:
{{ form.motif_detail.errors }}{{ form.motif_detail }}
Collaborations:
{{ form.collaboration.errors }}{{ form.collaboration }}
Ressources:
{{ form.ressource.errors }}{{ form.ressource }}
Gestion de crise:
{{ form.crise.errors }}{{ form.crise }}
Remarque:
{{ form.remarque.errors }}{{ form.remarque }}
{% include 'partial_table_documents.html' %}
{% if can_edit %}
{% include "actions.html" %}
{% endif %}
{% endblock %}