{% load i18n crispy_forms_tags %}

{% trans 'Shopping cart' %}

{% if cart.is_empty %} {% trans 'Shopping cart is empty' %} {% else %} {% include 'commerce/cart_items_table.html' %}
{% crispy form %} {% if cart.discount and cart.discount.unit == cart.discount.UNIT_CURRENCY %} {% trans 'Discount' %}: {{ cart.discount.get_amount_display }}
{% endif %} {% trans 'Subtotal' %}: {{ cart.get_subtotal_display }}

{% trans 'Proceed to checkout' %} {% endif %}