{% load i18n %} {% load currency_filters %}

{% if basket.is_empty %} {% trans "Your basket is now empty" %} {% comment %} {% else %} {% if basket.is_tax_known %} {% blocktrans with total=basket.total_incl_tax|currency:basket.currency %} Your basket total is now {{ total }} {% endblocktrans %} {% else %} {% blocktrans with total=basket.total_excl_tax|currency:basket.currency %} Your basket total is now {{ total }} {% endblocktrans %} {% endif %} {% endcomment %} {% endif %}

{% if include_buttons %}

{% trans "View Basket" %}

{% endif %}