{% extends 'eshop/@layout.html.twig' %} {% block keywords %}{% endblock %} {% block description %}{% endblock %} {% block title %}{{ 'title_cart_checkout'|trans({}, 'shop') }}{% endblock %} {% block system_main %}
{% if not cart or (cart and not cart.cartItems|length) %} {{ _self.showEmtyCart() }} {% else %} {{ _self.showCartContent(cart, products, errors) }} {% endif %}
{% endblock %} {% block system_left %} {{ include('eshop/component/cart_checkout_summary.html.twig') }} {% endblock %} {% block system_right %} {{ include('eshop/component/cart_checkout_summary.html.twig') }} {% endblock %} {% macro showEmtyCart() %}

{{ 'title_cart_empty'|translate }}

{% endmacro %} {% macro showCartContent(cart, products, errors) %}

Váš nákupní košík

{% for cartItem in cart.cartItems %} {% set product = products[cartItem.productId] %}
{% if product.mainImage %} {{ products[cartItem.productId].cache(shop.currentLocale).name }} {% else %} {{ component('dummy_image', {'width': 540, 'height': 540}) }} {% endif %}
{% if product is defined %} {{ cartItem.productNameWithVariant }} {% else %} {{ cartItem.productNameWithVariant }} {% endif %}
{{ _self.showQuantityWidget(cartItem, products) }}
{{ cartItem.totalPriceWithoutTax|money }} {% if cartItem.unitPrice %}
{{ cartItem.unitPrice|money }} / {{ 'per_unit'|translate }} {% endif %}
{% if shop.taxPayer %}
{{ cartItem.totalTax|money }}
{{ 'tax'|translate }} {{ cartItem.unitTax }} %
{% endif %}
{% if errors[product.id] is defined %}
{{ errors[product.id] }}
{% endif %}
{% endfor %} {% endmacro %} {% macro showQuantityWidget(cartItem, products) %} {% set originalProduct = null %} {% if products[cartItem.productId] is defined %} {% set originalProduct = products[cartItem.productId] %} {% endif %}
{% endmacro %}