{% extends '@SyliusShop/layout.html.twig' %} {% form_theme form '@SyliusShop/Form/theme.html.twig' %} {% import '@SyliusUi/Macro/messages.html.twig' as messages %} {% set header = 'sylius.ui.your_shopping_cart' %} {% block title %}{{ header|trans }} | {{ parent() }}{% endblock %} {% block beforeContent %} {% if not cart.empty %} {{ sylius_template_event('sylius.shop.cart.header', {'header': header, 'cart': cart}) }} {% endif %} {% endblock %} {% block content %} {% if not cart.empty %}
{{ sylius_template_event('sylius.shop.cart.items', {'cart': cart, 'form': form}) }}
{{ sylius_template_event('sylius.shop.cart.summary', {'cart': cart}) }}
{{ sylius_template_event('sylius.shop.cart.suggestions', {'cart': cart}) }} {% else %}
{{ messages.info('sylius.ui.your_cart_is_empty') }}
{% endif %} {% endblock %}