9 lines
238 B
YAML
9 lines
238 B
YAML
|
{% for shopping_list_item in grocy.fields.shopping_list_items %}
|
||
|
product: {{ shopping_list_item.product.name }}
|
||
|
amount: {{ shopping_list_item.amount }}
|
||
|
note: {{ shopping_list_item.note }}
|
||
|
{% if loop.nextitem %}
|
||
|
---
|
||
|
{%endif%}
|
||
|
{%endfor %}
|