{% extends "layout.html" %} {% macro create_recipe_row(recipe) -%} {{recipe.id}} {{recipe.name}} {{recipe.description}} {{recipe.servings}} {% if recipe.contains_meat_or_meat_products %} clear {% endif %} {% if recipe.contains_fish %} clear {% endif %} {% if recipe.contains_animal_products %} clear {% endif %} {% if recipe.preparation_time != 0 %} {{recipe.preparation_time}} Minuten {% endif %} {%- endmacro %} {% block content %} {% for recipe in recipes -%} {{ create_recipe_row(recipe) }} {%- endfor %}
# name beschreibung portionen fleisch fisch tierprodukte schedule
{% endblock %}