OrderTaxLine
The order_tax_line object describes a tax line applied to an order.
{%- comment -%} List tax lines for an order {%- endcomment -%}
{% for tax in order.tax_lines %}
<div>{{ tax.rate_percentage }}%: {{ tax.price | money }}</div>
{% endfor %}price
Returns the price.
rate
Returns the tax rate in decimals.
rate_percentage
Returns the tax rate.