How to have monetary ammount of order shown in email notification?
I was looking at the template for the email notification, and don’t see anything that strikes me as providing information on the amount of the order (which would also be useful to know about, when being notified of an order through an emailed message).
Does anyone know what code I might add to that template, in order to enable such a thing?
Thanks in advance!
-Jahan

10:22AM, Nov 08, 2006
for the price of each item:
{% for line in line_items %} {{ line.quantity }} {{line.title }} for {{ line.price | money }} each. {% endfor %}for the sub-total:
{{ subtotal_price | money_with_currency }}for included tax (if needed):
{{ tax_price | money_with_currency }}for shipping:
{{ shipping_price | money_with_currency }}for the total:
{{ total_price | money_with_currency }}