{% if p.image %}
{% else %}
{# Details #}
No image
'market', 'product', p.slug
{% endif %}
{% set href=url_for('market.browse.product.product_detail', slug=p.slug) %} {{ p.title }}
{% if p.brand %}{{ p.brand }}
{% endif %} {% if item.is_deleted %}This item is no longer available or price has changed
{% endif %}
{% if unit_price %}
{% set symbol = "£" if p.regular_price_currency == "GBP" else p.regular_price_currency %}
{{ symbol }}{{ "%.2f"|format(unit_price) }}
{% if p.special_price and p.special_price != p.regular_price %}{{ symbol }}{{ "%.2f"|format(p.regular_price) }}
{% endif %} {% else %}No price
{% endif %}
Quantity
{{ item.quantity }}
{% if unit_price %}
{% set line_total = unit_price * item.quantity %}
{% set symbol = "£" if p.regular_price_currency == "GBP" else p.regular_price_currency %}
Line total: {{ symbol }}{{ "%.2f"|format(line_total) }}
{% endif %}