{% load static %} HealthStack
{% include 'doctor-navbar.html' %}
User Image

{{patient.name}}

ID : {{ patient.patient_id }}
{{ patient.address }}
  • Phone {{patient.phone_number}}
  • Age {{patient.age}}
  • Blood Group {{patient.blood_group}}
{% comment %}
{% for appointment in appointments %} {% endfor %}
Patient Serial Number Appt Date Purpose Contact Payment Status Action

User Image #PT{{appointment.serial_number}}

{{appointment.date}} {{appointment.time}} {{ appointment.appointment_type }} {{appointment.patient.email}} Phone: {{appointment.patient.phone_number}} {% if appointment.payment_status == 'pending' %} Pending {% endif %} {% if appointment.payment_status == 'VALID' %} Paid {% endif %} {% if appointment.payment_status == 'cancelled' %} Cancelled {% endif %}
{% endcomment %}
{% for p in prescription %} {% endfor %}
Date Prescription ID Patient Contact Action
{{p.create_date}} {{p.prescription_id}}

User Image {{p.patient.name}}

{{p.patient.email}} Phone: {{p.patient.phone_number}}
{% comment %} Delete
{% endcomment %} View
{% for report in report %} {% endfor %}
Report Delivery Date Report ID Patient Contact
{{report.delivery_date}} {{report.report_id}}

User Image {{patient.name}}

{{patient.email}} Phone: {{patient.phone_number}}
{% comment %} Delete
{% endcomment %} View
{% include 'footer.html' %}
{% if messages %} {% endif %}