{% spaceless %} {% load i18n salebox_utils %} {% if data.basket.qty > 0 %} {% block thead %}{% endblock %} {% block pre_tbody %}{% endblock %} {% block tbody %} {% for item in data.basket.items %} {% if request.user.is_authenticated %} {% endif %} {% endfor %} {% endblock %} {% block post_tbody %}{% endblock %} {% block tfoot %} {% endblock %}
{% if item.image %} {% else %} n/a {% endif %} {{ item.variant.name }}{% if item.variant.preorder_flag %} PREORDER{% endif %} {{ item.variant|sb_currency }} {% if disable_qty_change is not True %} {% if item.qty > 1 %} {% else %} {% endif %} {% endif %} x{{ item.qty }} {% if disable_qty_change is not True %} {% endif %} {{ item.variant.qty_sale_price|sb_currency }} {{ item.price|sb_currency }} {% trans "Remove" %} {% trans "Move to wishlist" %}
{{ data.basket.sale_price|sb_currency }}

{% else %}
{% trans "Your basket is empty" %}
{% endif %} {% endspaceless %}