{% extends "base.html" %} {%block title%}Recipes{%endblock%} {%block body %}

Recipes

{% for recipe in recipes %}
  • {% if recipe.price != None %}{{price(recipe.price)}} {%endif%}{{ recipe.title }}
  • {% endfor %} {%endblock%}