{% sw_extends '@Storefront/storefront/page/checkout/cart/index.html.twig' %}
{% block page_checkout_cart_action_proceed %}
{{ parent() }}
{% block page_checkout_cart_action_gbmed_shopping_list_push %}
{% if context.customer and not context.customer.guest %}
<div class="gbmed-shopping-list-push"
data-toggle="modal"
data-target="#pushCartShoppingListActionModal">
{% sw_icon 'heart' style {
'pack': 'solid'
} %}
{{ "gbmed-shopping-list.pushCart"|trans|sw_sanitize }}
</div>
{% endif %}
{% endblock %}
{% endblock %}
{% block page_checkout_main_content %}
{{ parent() }}
{% block page_checkout_main_content_gbmed_shopping_list_push_modal %}
{% if context.customer and not context.customer.guest %}
{% sw_include '@Storefront/storefront/component/gbmed-shopping-list/push-modal.html.twig' with {
route: 'gbmed.shopping_list.push.cart',
id: 'pushCartShoppingListActionModal',
title: 'gbmed-shopping-list.modalPushCartHeader'|trans|sw_sanitize,
gbmedShoppingLists: page.extensions.gbmedShoppingLists
} %}
{% endif %}
{% endblock %}
{% endblock %}