Your Order History

{% if orders %} {% for order in orders %}
Order #{{ order.Id }}

Status: {{ order.Order_Status__c }}

Total Amount: ${{ order.Total_Amount__c }}

Discount: ${{ order.Discount__c }}

Total Bill: ${{ order.Total_Bill__c }}

Order Details:
{{ order.Order_Details__c.replace("\n", "
") | safe }}

{% endfor %} {% else %}

No orders found.

{% endif %} Back to Menu