{% 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 %}{{ parent() }} | {{ header|trans }}{% endblock %} {% block content %} {% if not cart.empty %} {{ sylius_template_event('sylius.shop.cart.header', {'header': header, 'cart': cart}) }}
{{ 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 %}

{{ header | trans }}

{{ 'sylius.ui.edit_your_items_apply_coupon_or_proceed_to_the_checkout'|trans }}

{{ messages.info('sylius.ui.your_cart_is_empty') }}

{{'sylius.ui.home' | trans}}
{% endif %} {% endblock %}