{% load i18n l10n currency_filters ocyanjson thumbnail extra_purchase_info_tags %} {% ocyanjson "oscar" "show_tax_everywhere" False as show_tax %}

{% trans "Your order" %}

{% for line in order.lines.all %} {% block basketline %}
{% with image=line.product.primary_image %} {% thumbnail image.original "150" upscale=False as thumb %} {{ line.product.get_title }} {% endthumbnail %} {% endwith %}
{% trans "Quantity" %}: {{ line.quantity }}
{% if line.attributes.all %}
{% for option in line.attributes.all %} {{ option.option }}:{% if option.display_value == True %} {% trans "Yes" %} {% elif option.display_value == False %} {% trans "No" %} {% else %}{{ option.display_value }}{% endif %} {% endfor %}
{% endif %}
{% total_purchase_info_for_line request line as session %} {% if session.price.from_price %} {{session.price.from_price.incl_tax|currency:session.price.currency}} {% endif %} {{session.price.incl_tax|currency:line.order.currency}} {% if show_tax %} {{session.price.excl_tax|currency:line.order.currency}} {% endif %}
{% endblock %} {% endfor %}