{% blocktrans with num_items=basket.num_items total=basket.total_incl_tax|currency:basket.currency strong_start='<b>' strong_end='</b>' paragraph_start='<p>' paragraph_end='</p>' %}
{{ 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='<b>' strong_end='</b>' paragraph_start='<p>' paragraph_end='</p>' %}
{{ 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 %}
</p>
{% if include_buttons %}
<p>
<ahref="{% url 'basket:summary' %}"class="btn btn-info">{% trans "View basket" %}</a>
<ahref="{% url 'checkout:index' %}"class="btn btn-info">{% trans "Checkout now" %}</a>