Item
Quantity
Cost
Subtotal
{% assign invoice_total = 0.00 %} {% for item in invoice_list %}
{{ item.description }}
{{ item.qty }}
${{ item.cost }}
${{ item.subtotal }}
{% assign invoice_total = invoice_total | plus: item.subtotal %} {% endfor %}
TOTAL: ${{ invoice_total }}