{% load history_tags %} {% load basket_tags %} {% load currency_filters %} {% load image_tags %} {% load i18n %}
{% if request.basket.num_lines %} {% for line in request.basket.all_lines %}
{% with image=line.product.primary_image %} {% oscar_thumbnail image.original "100x100" upscale=False as thumb %} {{ line.product.get_title }} {% endwith %}

{{ line.quantity }}x {{ line.description }}

{{ line.unit_price_excl_tax|currency:request.basket.currency }}
{% endfor %} {% else %}

{% trans "Your basket is empty." %}

{% endif %}