Order History

Back to Menu {% if orders %} {% for order in orders %}

Date: {{ order['CreatedDate'][:10] }}

Order: {{ order['Order_Details__c'] }}

Total Amount: ${{ order['Total_Amount__c'] }}

Discount: ${{ order['Discount__c'] }}

Total Bill: ${{ order['Total_Bill__c'] }}

{{ order['Order_Status__c'] }}

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

No past orders found.

{% endif %}