{% extends 'base_patient.html' %} {% block title %}showHistory{% endblock %} {% block content %} {% if user.is_authenticated %}

showHistory

{% csrf_token %}


   Prescriptions

{% for row in val %} {% for col in row %} {% endfor %} {% endfor %}
Patient Name
Doctor Name
Medication
Description
Date
{{col}}


   Common Blood Counts

{% if cbc|length <= 0 %} {% else %} {% for row in cbc %} {% for col in row %} {% endfor %} {% endfor %} {% endif %}
Date
WBC
RBC
Hemoglobin
Hematocrit
MCV
MCH
MCHC
RDW
Platelets
Neutrophils
Lymphs
Monocytes
No Test Records found! {{col}}


   Basic Metabolism Panel

{% if meta|length <= 0 %} {% else %} {% for row in meta %} {% for col in row %} {% endfor %} {% endfor %} {% endif %}
Date
Glucose
Creatinine
Sodium
Potassium
Chloride
Carbon Dioxide
No Test Records found! {{col}}


   MRI

{% if mri|length <= 0 %} {% else %} {% for row in mri %} {% endfor %} {% endif %}
Date
MRI
No Test Records found! {{ row.0 }}


   X-Ray

{% if xray|length <= 0 %} {% else %} {% for row in xray %} {% endfor %} {% endif %}
Date
X-Ray
No Test Records found! {{ row.0 }}
{% else %}

You are not logged in

Log In {% endif %} {% endblock %}