{% load static %} {% block title %}Dossier Médical de {{ patient.get_full_name }}{% endblock %} {% comment %} {% endcomment %}

Dossier Médical de {{ patient.get_full_name }}

Informations du patient

Nom: {{ patient.get_full_name }}

Email: {{ patient.email }}

Téléphone: {{ patient.telephone }}

Adresse: {{ patient.Adresse }}

Poids: {{ patient.poids }} kg

Taille: {{ patient.taille }} cm

Antécédents

    {% for antecedent in patient.antecedents_patient.all %}
  • {{ antecedent.description }} (diagnostiqué le {{ antecedent.date }})
  • {% empty %}
  • Aucun antécédent
  • {% endfor %}
Ajouter un antécédent

Vaccinations

    {% for vaccination in patient.vaccinations_patient.all %}
  • {{ vaccination.nom_vaccin }} (rappel le {{ vaccination.date_rappel }})
  • {% empty %}
  • Aucune vaccination
  • {% endfor %}
Ajouter une vaccination

Ordonnances

{% for ordonnance in patient.ordonnances.all %}

Patient: {{ ordonnance.patient.get_full_name }}

Médecin: {{ ordonnance.doctor.get_full_name }}

Date: {{ ordonnance.date }}

    {% for medicament in ordonnance.medicaments.all %}
  • Nom: {{ medicament.nom }}
  • Dosage: {{ medicament.dosage }}
  • Fréquence: {{ medicament.frequence }}
  • {% endfor %}
Télécharger l'ordonnance {% comment %} {% endcomment %} Voir les détails
{% endfor %} Ajouter une ordonnance

Analyses

    {% for analyse in patient.analyse_patient.all %}
  • {{ analyse.test_type }} (demandé le {{ analyse.date }}) par Dr. {{ analyse.doctor.get_full_name }}
  • {% empty %}
  • Aucune analyse
  • {% endfor %}
Ajouter une analyse

Résultats d'analyse

    {% for resultat_analyse in patient.resultats_laboratoire.all %}
  • Date : {{ resultat_analyse.date }}
  • Résultat : {{ resultat_analyse.resultats }}
  • Interprétation : {{ resultat_analyse.interpretation }}
  • {% empty %}
  • Aucun résultat
  • {% endfor %}
Ajouter le resultat d'une analyse

Imagerie Médicale

    {% for imagerie in patient.imagerie_medicale.all %}
  • Date : {{ imagerie.date }}
  • Type d'examen : {{ imagerie.type_examen }}
  • Résultat : {{ imagerie.resultat }}
  • {% empty %}
  • Aucune imagerie
  • {% endfor %}
Ajouter une imagerie Médicale