{% for item in cart.listitems %}
  • {{ item.product.name }}
    {{ item.total()|currency }}
    {%if edit_cart %} x {% endif %}
  • {% endfor %}