cookbook/recipes/templates/recipes/index.html

10 lines
223 B
HTML
Raw Normal View History

2019-10-28 16:50:13 +01:00
{% 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 %}