Looping through a list of lines on an invoice.

```bash
{% for line in invoice.line_items %}
   Product: {{ line.item_name }}
   Rate: {{invoice.currency_symbol}}{{ line.line_rate }}
   Quantity: {{ line.line_quantity }}
{% endfor %}
```