{% load static %} HealthStack
{% if user.is_authenticated and user.is_patient %} {% include 'patient_navbar.html' %} {% endif %} {% if user.is_authenticated and user.is_doctor %} {% include 'doctor-navbar.html' %} {% endif %}
{% if user.is_authenticated and user.is_patient %} {% include 'patient-sidebar.html' %} {% endif %} {% if user.is_authenticated and user.is_doctor %} {% include 'doctor-sidebar.html' %} {% endif %}

Test Cart

{% for test in test_carts %} {% endfor %}
Test ID Test Name Price
{{test.item.test_info_id}} {{test.item.test_name}} {{test.item.test_info_price}}

Cart Totals: {{ test_order.get_totals }} Tk.


Proceed to Checkout

Back to Prescription

{% include 'footer.html' %}