grocy-cli/templates/shopping/view.yml

9 lines
238 B
YAML
Raw Permalink Normal View History

{% 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 %}