{% if recettes is empty %} Aucune recette trouvée {% endif %} {% for recette in recettes %}
  • {{ recette.nom }} {{ svg_icon('pen.svg') }} {{ svg_icon('eye.svg') }}

    {% if recette.cuissonType is not null %} {{ svg_icon('cuissonType' ~ recette.cuissonType ~ '.svg') }} {% endif %} {% if recette.preparationDuree > 0 %} {{ svg_icon('clock.svg') }} {{ recette.preparationDuree }} min {% endif %} {% if recette.cuissonDuree > 0 %} {{ svg_icon('fire.svg') }} {{ recette.cuissonDuree }} min {% endif %} {% if recette.difficulte >= 1 %} {% for i in range(1, recette.difficulte) %} 1 %}style="margin-left: -12px;"{% endif %}> {{ svg_icon('chef.svg') }} {% endfor %} {% else %} 0 {% endif %} {% if recette.prix >= 1 %} {% for i in range(1, recette.prix) %} 1 %}style="margin-left: -12px;"{% endif %}> {{ svg_icon('euro.svg') }} {% endfor %} {% else %} 0 {% endif %}

  • {% endfor %}