{if !$products}
{$page = waRequest::get('page', 1, 'int')}
{$_message = _w("This category does not contain any products.")}
{if $page > 1}
{$_message = sprintf(
_w('No products on this page. Continue viewing products of this category.'),
$wa->getUrl('shop/category', ['category_url' => $category.full_url])
)}
{elseif !empty($filters)}
{$_message = _w("No products were found.")}
{/if}
{$_message}
{else}
{include file='list-thumbs.html' sorting=!empty($category.params.enable_sorting)}
{*
or use the line below to change product list view
{include file='list-table.html' sorting=!empty($category.params.enable_sorting)}
*}
{/if}