Customer
{{ data.to.name }}
{% if data.to.address %}
{{ data.to.address | nl2br }}
{% endif %}
{% if data.to.email %}
{{ data.to.email }}
{% endif %}
{% if data.to.phone %}
{{ data.to.phone }}
{% endif %}
Subtotal
{{ data.subtotal | currency }}
{% if data.tax_rate > 0 %}
Tax ({{ data.tax_rate | percent }})
{{ (data.tax or data.tax_amount or 0) | currency }}
{% endif %}
TOTAL
{{ data.total | currency }}