Your Order Summary

Order Details:

{% if order %}
{% for line in order.Order_Details__c.split('\n') %} {% set item_parts = line.split('|') %}
{{ item_parts[0] }} {{ item_parts[0] | 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