Subtotal:
{{ currency_symbol }}{{ order.total_amount }}
{% if order.discount_amount and order.discount_amount > 0 %}
Discount{% if order.promo_code %} ({{ order.promo_code }}){% endif %}:
−{{ currency_symbol }}{{ order.discount_amount }}
{% endif %}
Tax:
{{ currency_symbol }}{{ order.tax_amount }}
Total:
{{ currency_symbol }}{{ order.final_amount }}
Payment:
{{ order.get_payment_method_display }}
{% if order.amount_paid %}
Amount Paid:
{{ currency_symbol }}{{ order.amount_paid }}
{% endif %}
{% if order.balance_amount %}
Balance:
{{ currency_symbol }}{{ order.balance_amount }}
{% endif %}