cookbook/recipes/templates/recipes/index.html

10 lines
223 B
HTML

{% if recipe_list %}
<ul>
{% for recipe in recipe_list %}
<li><a href="{% url 'recipes:detail' recipe.id %}">{{ recipe.name }}</a></li>
{% endfor %}
</ul>
{% else %}
<p>No recipes are available.</p>
{% endif %}