{% extends 'html/base.html' %} {% load static %} {% block title %} Dossier de {{ sun_child.first_name }} {{ sun_child.last_name }} {% endblock %} {% block content %}

Dossier de {{ sun_child.first_name }} {{ sun_child.last_name }}

Profile
{{ sun_child.first_name }} {{ sun_child.last_name }}

Dernière mis à jour :

{{ sun_child.updated_by }} {{ sun_child.updated_date }}

Région : {{ sun_child.region }}

Adresse : {{ sun_child.address }}

Date de naissance : {{ sun_child.birth_date }}

Nom complet du père : {{ sun_child.father_full_name }}

Nom complet de la mère : {{ sun_child.mother_full_name }}

Hôpital du jour : {{ sun_child.day_hospital }}

Ambulatoire : {{ sun_child.outpatient }}

École : {{ sun_child.school }}

Cas : {% for case in sun_child.cases.all %} {{ case }} {% endfor %}

Loisirs : {% for leisure_object in sun_child.leisure.all %} {{ leisure_object }} {% endfor %}

Commentaires :

{{ sun_child.comment }}

Infos générales de l'enfant
{% for history in medical_histories %}

{{ history.name }}

{{ history.description }}

Pathologies Identifiées

    {% for pathology in history.identified_pathologies.all %}
  • {{ pathology.name }}
  • {% empty %}
  • No identified pathologies.
  • {% endfor %}

Historique Médical de Base

    {% for base in history.base_medical_histories.all %}
  • {{ base.name }}
  • {% empty %}
  • No base medical histories.
  • {% endfor %}

Historique Médical Chirurgical

    {% for surgery in history.surgical_medical_histories.all %}
  • {{ surgery.name }}
  • {% empty %}
  • No surgical medical histories.
  • {% endfor %}

Historique Médical Familial

    {% for family in history.family_medical_histories.all %}
  • {{ family.name }}
  • {% empty %}
  • No family medical histories.
  • {% endfor %}
{% endfor %}

Bilans de l'enfant

{% for report in specialist_reports %}
{{ report.name }}

Spécialiste : {{ report.made_by }}

Spécialité : {{ report.speciality }}

Enfant : {{ report.sun_child }}

Commentaires :

{{ report.comment }}

Poinst d'attentions :

{{ report.point_of_attention }}

{% endfor %}
{#
#} {#
#} {#
#} {#
Infos générales de l'enfant
#} {# {% for history in medical_histories %}#} {#
#} {#
#} {#

{{ history.name }}

#} {#

{{ history.description }}

#} {#

Pathologies Identifiées

#} {#
    #} {# {% for pathology in history.identified_pathologies.all %}#} {#
  • {{ pathology.name }}
  • #} {# {% empty %}#} {#
  • No identified pathologies.
  • #} {# {% endfor %}#} {#
#} {#

Historique Médical de Base

#} {#
    #} {# {% for base in history.base_medical_histories.all %}#} {#
  • {{ base.name }}
  • #} {# {% empty %}#} {#
  • No base medical histories.
  • #} {# {% endfor %}#} {#
#} {#

Historique Médical Chirurgical

#} {#
    #} {# {% for surgery in history.surgical_medical_histories.all %}#} {#
  • {{ surgery.name }}
  • #} {# {% empty %}#} {#
  • No surgical medical histories.
  • #} {# {% endfor %}#} {#
#} {#

Historique Médical Familial

#} {#
    #} {# {% for family in history.family_medical_histories.all %}#} {#
  • {{ family.name }}
  • #} {# {% empty %}#} {#
  • No family medical histories.
  • #} {# {% endfor %}#} {#
#} {#
#} {#
#} {# {% endfor %}#} {#
#} {#
#} {#
#}
{% if messages %}
{% endif %} {% endblock %}