25 lines
943 B
Plaintext
25 lines
943 B
Plaintext
name: {{ name }}
|
|
description: |
|
|
|
|
{{ description }}
|
|
|
|
picture_file_name: {% if picture_file_name is not none %}
|
|
{{picture_file_name}}
|
|
{% else %}
|
|
|
|
{% endif %}
|
|
base_servings: {{ base_servings | default("1") }}
|
|
desired_servings: {{ desired_servings | default("1") }}
|
|
not_check_shoppinglist: {{ not_check_shoppinglist | default("1") }}
|
|
products: {% for product in products %}
|
|
- id: {{ product.id }}
|
|
name: {{ product.name }}
|
|
description: {{ product.description | default(null) }}
|
|
note: {{ recipes_pos[loop.index0].note }}
|
|
amount: {{ recipes_pos[loop.index0].amount }}
|
|
qu_id: {{ recipes_pos[loop.index0].qu_id }}
|
|
only_check_single_unit_in_stock: {{ recipes_pos[loop.index0].only_check_single_unit_in_stock }}
|
|
ingredient_group: {{ recipes_pos[loop.index0].ingredient_group | default(null) }}
|
|
not_check_stock_fulfillment: {{ recipes_pos[loop.index0].not_check_stock_fulfillment }}{% endfor %}
|
|
|