{% load i18n %}
{% load currency_filters %}
{% if basket.is_empty %}
{% trans "Your basket is now empty" %}
{% 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 %}
{% endif %}
{% if include_buttons %}
{% trans "View basket" %}
{% trans "Checkout now" %}
{% endif %}