{% endif %}
{% with ingredients=page.ingredients.all() %}
{% if ingredients %}
Ingredients
{% for ingredient in ingredients %}
{% if ingredient.live %}
{# If it's live, show as-is #}
{{ ingredient.name }}
{% else %}
{# EXAMPLE: we can show a placeholder element for instances that are not live #}
Draft ingredient
(draft)
{% endif %}