Ingredients
Pour {{ recette.nombrePart|default('X') }} portion{% if recette.nombrePart > 1 %}s{% endif %}
{% for recetteIngredientBloc in recette.ingredientBlocs %}
1 %} style="margin-top: 8px;"{% endif %}>{{ recetteIngredientBloc.titre }}{% for recetteIngredient in recetteIngredientBloc.recetteIngredients %}{{ recetteIngredient.quantite }}{{ recetteIngredient.unite }} {{ recetteIngredient.ingredient.nom }}
{% endfor %}
{% endfor %}
|
Caractéristiques
{% if recette.preparationDuree > 0 %}
Temps de préparation : {{ recette.preparationDuree }} min
{{ svg_icon('clock.svg') }}
{% endif %}
{% if recette.cuissonDuree > 0 %}
Temps de cuisson : {{ recette.cuissonDuree }} min
{{ svg_icon('fire.svg') }}
{% endif %}
{% if recette.pauseDuree > 0 %}
Temps de pause : {{ recette.pauseDuree }} min
{{ svg_icon('clock.svg') }}
{% endif %}
Difficulté : {{ recette.difficulte|difficulte }}
{% if recette.difficulte >= 1 %}
{% for i in range(1, recette.difficulte) %}
1 %}style="margin-left: -12px;"{% endif %}>
{{ svg_icon('chef.svg') }}
{% endfor %}
{% endif %}
Coût : {{ recette.prix|prix }}
{% if recette.prix >= 1 %}
{% for i in range(1, recette.prix) %}
1 %}style="margin-left: -12px;"{% endif %}>
{{ svg_icon('euro.svg') }}
{% endfor %}
{% endif %}
Type de cuisson : {{ recette.cuissonType|cuissonType }}
{% if recette.cuissonType is not null %}
{{ svg_icon('cuissonType' ~ recette.cuissonType ~ '.svg') }}
{% endif %}
|