19 lines
749 B
Smarty
19 lines
749 B
Smarty
{if $smarty.get.s != 'ordering' or isAjax()}
|
|
<div class="cartbox">
|
|
<div data-reload="cartinfo-products">
|
|
{if $cartInfo.totalPieces >= 1}
|
|
<div class="cartbox-title">
|
|
<p>{t}Nákupní košík{/t}</p>
|
|
<p>{$cartInfo.totalPrice}</p>
|
|
</div>
|
|
{include "block.products.cart-box.tpl" items=$cartInfo.items count=2}
|
|
|
|
{if !$isDealer}
|
|
{include "components/shipping-progress.tpl" cartPrice=$cartInfo.totalPriceWithVat_array.value_with_vat}
|
|
{/if}
|
|
<a href="{url s=cart}" class="btn btn-block {$tpl_vars.cartbox_btn|default:'btn-primary'}">{t}Přejít do košíku{/t}</a>
|
|
{/if}
|
|
</div>
|
|
</div>
|
|
{/if}
|