Looping through a list of lines on a subscription.

```bash
{% for line in package.line_items %}
   Product: {{ line.item_name }}
   Quantity: {{ line.line_quantity }}
{% endfor %}
```