2019-08-04 23:59:28 -05:00
|
|
|
{% from 'recipe/macro.yml' import ingredient_label, render_stock_fulfilment %}
|
2019-07-07 13:58:01 -05:00
|
|
|
name: {{ grocy.fields.name }}
|
2019-08-04 23:59:28 -05:00
|
|
|
servings: {{ grocy.fields.base_servings }}
|
2019-07-07 13:58:01 -05:00
|
|
|
costs: {{ grocy.fields.fulfillment.costs }}
|
2019-08-04 23:59:28 -05:00
|
|
|
ingredients: {% for ingredient in grocy.meta.recipes.ingredients.valid_values %}
|
|
|
|
{{ ingredient_label(ingredient) }} {{ render_stock_fulfilment(ingredient, grocy.meta.fa_icons) }}
|
|
|
|
note: {{ ingredient.note }} {% endfor %}
|
2019-07-07 13:58:01 -05:00
|
|
|
description: |-
|
2019-10-02 23:19:47 -05:00
|
|
|
{{ grocy.fields.description }}
|
2019-07-07 13:58:01 -05:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|