{% for item in items %}
{{ item.name }}
x{{ item.qty }}
{{ item.price }}
{% endfor %}
Subtotal
{{ subtotal }}
{% if discount %}
Discount
-{{ discount }}
{% endif %}
Tax ({{ tax_rate }})
{{ tax }}
TOTAL
{{ total }}
Payment Method
{{ payment_method }}
{% if card_last_four %}
Card
**** {{ card_last_four }}
{% endif %}
{% if change_due %}
Tendered
{{ amount_tendered }}
Change
{{ change_due }}
{% endif %}