{% extends "layout.html" %} {% block content %}

{{recipe.name}}


{{recipe.description}}

{{recipe.additional_text}}

{% if recipe.preparation_time != 0 %} schedule{{recipe.preparation_time}} Minuten {% endif %}
Zutaten

Zubereitung
    {% for preparation_step in recipe.preparation %}
  1. {{preparation_step}}
  2. {% endfor %}

Bewertung
thumb_up {{recipe.upvotes}}
thumb_down {{recipe.downvotes}}
Verbesserungen

Quelle
{{recipe.source}}
{% endblock %}