cookbook/recipes/templates/recipes/detail.html

11 lines
232 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>
<p>{{ recipe.protocol }}</p>