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

{% if basket.is_empty %} {% trans "Your basket is now empty" %} {% else %} {% if basket.is_tax_known %} {% blocktrans with num_items=basket.num_items total=basket.total_incl_tax|currency:basket.currency strong_start='' strong_end='' paragraph_start='

' paragraph_end='

' %} {{ strong_start }}We’ve updated your quantity.{{ strong_end }} {{ paragraph_start }}Your cart includes {{ num_items }} enrollment codes at a total cost of {{ total }}, that you will receive via email.{{ paragraph_end }} {% endblocktrans %} {% else %} {% blocktrans with num_items=basket.num_items total=basket.total_excl_tax|currency:basket.currency strong_start='' strong_end='' paragraph_start='

' paragraph_end='

' %} {{ strong_start }}We’ve updated your quantity.{{ strong_end }} {{ paragraph_start }}Your cart includes {{ num_items }} enrollment codes at a total cost of {{ total }}, that you will receive via email.{{ paragraph_end }} {% endblocktrans %} {% endif %} {% endif %}

{% if include_buttons %}

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

{% endif %}