{% set product = item.product %}
{% if readonly is not defined %}
{% set readonly = false %}
{% endif %}
<div class="calculator-tbl__item" data-id="{{ product.id }}">
<div class="calculator-tbl__main">
<div class="order-tbl__product">
<div class="order-tbl__product-photo">
{{ include('application/partial/picture.html.twig', {image: product.image, width: 80, height: 80}) }}
</div>
<div class="order-tbl__product-detail">
<div class="order-tbl__product-title"><a href="{{ documentUrl(product) }}">{{ product.name(app.request.locale) }}</a></div>
{% if noQuantity is not defined or not noQuantity %}
<div class="product-block-count">
<div class="count">
{% if not readonly %}
<button data-value="-1" class="count__minus" {% if item.quantity == 1 %}disabled{% endif %}>
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 8a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H2a1 1 0 0 1-1-1z"/>
</svg>
</button>
{% endif %}
<input type="text" class="cart-quantity count__control countedInput" value="{{ item.quantity }}" {% if readonly %}readonly{% endif %}>
{% if not readonly %}
<button data-value="1" class="count__plus">
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
<path d="M1 8a1 1 0 0 1 1-1h12a1 1 0 1 1 0 2H2a1 1 0 0 1-1-1z"/>
<path d="M8 1a1 1 0 0 1 1 1v12a1 1 0 1 1-2 0V2a1 1 0 0 1 1-1z"/>
</svg>
</button>
{% endif %}
</div>
<span class="price__unit"> шт.</span>
</div>
{% endif %}
</div>
</div>
</div>
{% if not readonly %}
<div class="calculator-tbl__remove">
<button class="remove__link">
<span class="remove__icon"><svg width="24" height="24" viewBox="0 0 24 24" fill="none"
xmlns="http://www.w3.org/2000/svg"><path
d="M3 5.25a.75.75 0 0 1 .75-.75h16.5a.75.75 0 0 1 0 1.5H3.75A.75.75 0 0 1 3 5.25zM9.75 9a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6A.75.75 0 0 1 9.75 9zM14.25 9a.75.75 0 0 1 .75.75v6a.75.75 0 0 1-1.5 0v-6a.75.75 0 0 1 .75-.75z"></path><path
d="M5.25 4.5a.75.75 0 0 1 .75.75V19.5h12V5.25a.75.75 0 0 1 1.5 0V19.5A1.5 1.5 0 0 1 18 21H6a1.5 1.5 0 0 1-1.5-1.5V5.25a.75.75 0 0 1 .75-.75z"></path><path
d="M8.159 2.159A2.25 2.25 0 0 1 9.75 1.5h4.5a2.25 2.25 0 0 1 2.25 2.25v1.5a.75.75 0 0 1-1.5 0v-1.5a.75.75 0 0 0-.75-.75h-4.5a.75.75 0 0 0-.75.75v1.5a.75.75 0 0 1-1.5 0v-1.5c0-.597.237-1.169.659-1.591z"></path></svg></span>
</button>
</div>
{% endif %}
</div>