{% extends 'layout.html' %} {% block content %}

My Patients

Clear Filter
{% if patients %} {% for patient in patients %} {% endfor %}
First Name Last Name Birth Date Address Phone Number Email Gender Height Weight Blood Type Allergies Health Insurance Actions
{{ patient.firstName }} {{ patient.lastName }} {{ patient.birthDate }} {{ patient.address }} {{ patient.phoneNumber }} {{ patient.email }} {{ patient.gender }} {{ patient.height }} {{ patient.weight }} {{ patient.bloodType }} {{ patient.allergies }} {{ patient.healthInsurance }} Add medical record Show medical records Create Request for Medical Investigation
{% else %}

No patients yet.

{% endif %} {% endblock content %}