{% load i18n %} {% load currency_filters ocyanjson %} {% ocyanjson "oscar" "show_tax_everywhere" False as show_tax %}
{{ product.get_title }} {% with attributes=line.attributes.all %} {% if attributes %}
    {% for attr in attributes %}
  • {{ attr.option.name }} {% if attr.value == 'on' %}{% trans "Yes" %}{% else %}{{ attr.value }}{% endif %}
  • {% endfor %}
{% endif %} {% endwith %}
{{ line.line_price_incl_tax|currency:basket.currency }} {% if show_tax %}
{% with line.line_price_excl_tax|currency:line.price_currency as price_excl_tax %} {% blocktrans %}Excl. tax {{ price_excl_tax }}{% endblocktrans %} {% endwith %}{% endif %}