FOR loops - lines of an invoice
Looping through a list of lines on an invoice.
{% for line in invoice.line_items %}
Product: {{ line.item_name }}
Rate: {{invoice.currency_symbol}}{{ line.line_rate }}
Quantity: {{ line.line_quantity }}
{% endfor %}