{% extends 'dossiers/patientrecord_tab.html' %} {% block content %}

Périodes de socialisation

{% for duration in object.socialisation_durations.all %}
Arrivée le {{ duration.start_date }} dans {% if duration.school %}l'établissement {{ duration.school }}{% else %}un établissement non renseigné{% endif %}{% if duration.level %} (en {{ duration.level }}){% endif %}
    {% if duration.school.address %}
  • {{ duration.school.address }}, {{ duration.school.zip_code }} {{ duration.school.city }}
  • {% endif %} {% if duration.school.phone %}
  • {{ duration.school.phone }}
  • {% endif %}
    {% if duration.end_date %}
  • : {{ duration.end_date }}
  • {% endif %} {% if duration.comment %}
  • : {{ duration.comment }}
  • {% endif %}
{% endfor %}

Demandes MDPH

{% for request in object.mdph_requests.all %}
Demande le {{ request.start_date }} à la MDPH {{ request.mdph }}
    {% if request.comment %}
  • : {{ request.comment }}
  • {% endif %}
{% endfor %}

Réponses MDPH

{% for response in object.mdph_responses.all %}
Du {{ response.start_date }} au {{ response.end_date }} à la MDPH {{ response.mdph }}
    {% if response.comment %}
  • : {{ response.comment }}
  • {% endif %} {% if response.type_aide %}
  • : {{ response.type_aide }}
  • {% endif %} {% if response.name %}
  • : {{ response.name }}
  • {% endif %} {% if response.rate %}
  • : {{ response.rate }}
  • {% endif %}
{% endfor %}
{% endblock %}