{% load static %} HealthStack
{% include 'patient_navbar.html' %}
{% include 'patient-sidebar.html' %}
{% for prescription in prescription %}

Prescription ID: {{prescription.prescription_id}}
Patient ID: {{prescription.patient.patient_id}}
Date: {{prescription.create_date }}

Doctor Information

Name: {{prescription.doctor.name}}
Department: {{prescription.doctor.department_name}}
Email: {{prescription.doctor.email}}

Prescription To

Name: {{prescription.patient.name}}
Addtress: {{prescription.patient.address}}
Email: {{prescription.patient.email}}
Phone Number: {{prescription.prescription_id}}


Medicine


{% for pm in prescription_medicine %} {% endfor %}
Medicine Name Quantity Frequency Duration Relation with meal Instruction
{{pm.medicine_name}} {{pm.quantity}} {{pm.frequency}} {{pm.duration}} {{pm.relation_with_meal}} {{pm.instruction}}

Test


{% for pt in prescription_test %} {% endfor %}
Test Name Description Action
{{pt.test_name}} {{pt.test_description}} Select

Advice/Recommendation

{{prescription.extra_information}}



{% endfor %}