Order History

{% if orders %} {% for order in orders %} {% endfor %}
Date Order Details Total Amount Discount Total Bill Status
{{ order['CreatedDate'][:10] }} {{ order['Order_Details__c'] }} ${{ order['Total_Amount__c'] }} ${{ order['Discount__c'] }} ${{ order['Total_Bill__c'] }} {{ order['Order_Status__c'] }}
{% else %}

No past orders found.

{% endif %}