37 lines
995 B
Smarty
37 lines
995 B
Smarty
{* upravený fallback *}
|
|
{extends_parent}
|
|
|
|
{block "tpl-vars" append}
|
|
{$tpl_vars.delivery_country_picker = true}
|
|
{$tpl_vars.online_payment_visible_items = 1}
|
|
{$tpl_vars.delivery_collapsible = true}
|
|
{$tpl_vars.preselect_delivery = "false"}
|
|
{$tpl_vars.btns_in_sidebar = "true"}
|
|
{$tpl_vars.cart_sidebar = "true"}
|
|
{$tpl_vars.summary_title_in_first_step = true}
|
|
{$tpl_vars.ordering_products_discount = true}
|
|
{$tpl_vars.pricebox_cartsaving = true}
|
|
{/block}
|
|
|
|
{block 'order-process'}
|
|
<div class="container">
|
|
<div class="order-process-container">
|
|
{include "ordering/ordering.process.tpl"}
|
|
</div>
|
|
</div>
|
|
{/block}
|
|
|
|
{block "content-wrapper"}
|
|
{if $body.products|count > 0}
|
|
{$smarty.block.parent}
|
|
{else}
|
|
<div class="empty-cart" data-reload="cart">
|
|
<div>
|
|
<h1>Váš košík je prázdný</h1>
|
|
<p>Pojďme něco přidat.</p>
|
|
</div>
|
|
</div>
|
|
{insert_page code="empty-cart"}
|
|
{/if}
|
|
{/block}
|