Your Order Summary

Order Details:

{% if order %}
{% for line in order.Order_Details__c.split('\n') %}
{{ line | safe }}
{% endfor %}
{% else %}

No order details available.

{% endif %}
{% if order %}
Total: ${{ order.Total_Amount__c }}
Discount: ${{ order.Discount__c }}
Total Bill: ${{ order.Total_Bill__c }}
{% endif %} Back to Menu