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

{% if basket.is_empty %} {% trans "Your basket is now empty" %} {% else %} {% blocktrans with total=basket.total_incl_tax|currency %} Basket total now {{ total }}. {% endblocktrans %} {% endif %}

{% if show_buttons %}

{% trans "View basket" %} {% trans "Checkout now" %}

{% endif %}