{{ product.name }}

£{{ "{:.2f}".format(product.price) }}

{% set numInBasket = 0 %} {% if product.name in basket %} {% set numInBasket = basket[product.name] %} {% endif %}