cookbook/recipes/templates/recipes/detail.html

15 lines
292 B
HTML

<h1>{{ recipe.name }}</h1>
<h2>Ingredients</h2>
<ul>
{% for ingredient in ingredient_list %}
<li>{{ ingredient.quantity }} {{ ingredient.ingredient }}</li>
{% endfor %}
</ul>
<h2>Steps</h2>
<ul>
{% for step in steps %}
<li>{{ step.protocol }}</li>
{% endfor %}
</ul>