webseite/templates/zutaten/zutat_menge.html

91 lines
4.4 KiB
HTML
Raw Normal View History

2021-08-08 19:02:09 +02:00
{#-
Hier wird eine Zutaten tabelle gerendert.
Zusammen mit einem Link auf den Verarbeitungshinweis
oder eine Notiz zur Zutat.
Der Text zum Hinweis oder der Notiz wird hier nicht gerendert.
-#}
{%- if child.ingredients.blocks != [] -%}
{%- for ing in child.ingredients.blocks -%}
{%- if ing.ingredient is defined and ing.ingredient != "" -%}
{%- if ing.amounts is defined and ing.amounts != "" and ing.amounts.blocks is defined and ing.amounts.blocks != "" -%}
{%- if ing.amounts.blocks != [] -%}
{#-
Wenn eine Zutat-Menge definiert ist, wird diese im folgenden for loop gerendert.
Sollte es unterschiedliche Teig-Mengen geben, ist die reinfolge der Zutatenmenge relevant.
Wenn also ein Rezept für 2 größen definiert ist, wird für die erste größe die erste Zutat genommen.
Und für die zweite größe die andere.
ABER, wenn eine der Zutat Null bzw. 0 ist, dann wird diese eine Zutat nicht gerendert.
-#}
{%- set ingredient_counter = loop.index -%}
{%- for amt in ing.amounts.blocks -%}
{%- if loop.index == prt_loop -%}
{%- if amt.amount is defined and amt.amount != "" and amt.amount != 0 and amt.amount != '0' and amt.amount != 'Null' -%}
{{- '\n ' -}} <li>
{{- '\n ' -}} <span
{%- if ing.usda_num is defined and ing.usda_num != "" -%}
{{- ' id=' -}}"usda_{{- ing.usda_num -}}"
{%- endif -%}
>{{ ing.ingredient }}: {{ amt.amount }} {{ amt.unit | default('each') }}</span>
{#-
Hier wird eine kurznotiz zur verarbeitung gerendert
oder ein Link zur Verarbeitungsnotiz.
-#}
{%- if ing.processing is defined and ing.processing != "" and ing.processing.blocks is defined and ing.processing.blocks != "" -%}
{%- if ing.processing.blocks != [] -%}
{%- for prc in ing.processing.blocks -%}
{%- if loop.index == 1 -%}
{%- if prc.short|default(False) -%}
{{- ' ' -}}
<i>({{ prc.process }})</i>
{%- else -%}
{{- ' ' -}}
<i>(<a href="#processing_{{- ing.ingredient | string -}}"_ class="processing">Angaben zur Verarbeitung von {{ ing.ingredient }} beachten</a>)</i>
{%- endif -%}
2021-07-31 21:13:24 +02:00
{%- endif -%}
2021-08-08 19:02:09 +02:00
{%- endfor -%}
{%- endif -%}
{%- endif -%}
{%- if ing.substitutions is defined and ing.substitutions != "" -%}
{%- if ing.substitutions.blocks is defined and ing.substitutions.blocks != "" -%}
{%- if ing.substitutions.blocks != [] -%}
{%- for sst in ing.substitutions.blocks -%}
{%- if sst.amounts is defined and sst.amounts != "" and sst.amounts.blocks is defined and sst.amounts.blocks != "" -%}
{%- if sst.amounts.blocks != [] -%}
{%- for amt2 in sst.amounts.blocks -%}
{%- if loop.index == prt_loop -%}
{%- if amt2.amount is defined and amt2.amount != "" and amt2.amount != 0 and amt2.amount != '0' -%}
{{- ' ' -}}<i><span
{%- if sst.usda_num is defined and sst.usda_num != "" -%}
{{- ' id=' -}}"usda_{{- sst.usda_num -}}"
2021-07-31 21:13:24 +02:00
{%- endif -%}
2021-08-08 19:02:09 +02:00
>(alternativ {{ sst.ingredient }})</span></i>
{%- endif -%}
2021-07-31 21:13:24 +02:00
{%- endif -%}
2021-08-08 19:02:09 +02:00
{%- endfor -%}
{%- endif -%}
2021-07-31 21:13:24 +02:00
{%- endif -%}
2021-08-08 19:02:09 +02:00
{%- endfor -%}
2021-07-31 21:13:24 +02:00
{%- endif -%}
{%- endif -%}
{%- endif -%}
2021-08-08 19:02:09 +02:00
{{- '\n ' -}} </li>
{%- endif -%}
2021-07-31 21:13:24 +02:00
{%- endif -%}
2021-08-08 19:02:09 +02:00
{%- endfor -%}
{%- else -%}
{#-
2021-07-31 21:13:24 +02:00
2021-08-08 19:02:09 +02:00
Wenn eine Zutat keine klare Menge hat, wird diese ohne genaue größenangabe gerendert.
-#}
{%- endif -%}
{%- endif -%}
{%- endif -%}
{%- endfor -%}
{%- endif -%}