Order History
{% for order in orders[:3] %}

{{ order.formatted_items }}

{{ order.formatted_date }}

Total: ₹{{ order.Total_Bill__c }}

Status: {{ order.order_status }}

{% endfor %}
{% for order in orders[3:] %}

{{ order.formatted_items }}

Order Placed: {{ order.formatted_date }}

Total: ₹{{ order.Total_Bill__c }}

Status: {{ order.order_status }}

{% endfor %}
{% if orders|length > 3 %} {% endif %} {% if not orders %}

No orders found.

{% endif %}