22 lines
596 B
Smarty
22 lines
596 B
Smarty
{if count($body.productsList) gt 0}
|
|
{if $body.pager.count > 1 || isAjax()}
|
|
<div class="pager-top" data-reload="pager-top">
|
|
{include "block.pager.tpl" pager=$body.pager}
|
|
</div>
|
|
{/if}
|
|
|
|
<div data-reload="products">
|
|
{include "block.products.tpl" products=$body.productsList}
|
|
|
|
{if $body.pager.count > 1}
|
|
{include "block.pager.tpl" pager=$body.pager}
|
|
{/if}
|
|
</div>
|
|
{else}
|
|
<div data-reload="products">
|
|
<div class="alert alert-info" role="alert">
|
|
Žádný produkt
|
|
</div>
|
|
</div>
|
|
{/if}
|