{% block checkout_basket_main %}
{% set currency = oView.getActCurrency() %}
{% if oView.isLowOrderPrice() %}
{% block checkout_basket_loworderprice_top %}
{{ translate({ ident: "MIN_ORDER_PRICE" }) }} {{ oView.getMinOrderPrice() }} {{ currency.sign }}
{% endblock %}
{% endif %}
{% if not oxcmp_basket.getProductsCount() %}
{% block checkout_basket_emptyshippingcart %}
{% endblock %}
{% else %}
{% block checkout_basket_next_step_top %}
{% endblock %}
{% include "page/checkout/inc/basketcontents.html.twig" with {editable: true} %}
{% include "page/checkout/inc/summary_sidebar.html.twig" with {btn: true, editable: true} %}
{% endif %}
{% endblock %}
{% if oView.isWrapping() %}
{% include "page/checkout/inc/wrapping.html.twig" %}
{% endif %}
{{ insert_tracker({title: template_title}) }}
{% endcapture %}
{% include "layout/page.html.twig" %}