{foreach key=row item=product from=$results}
{if $show_name==1}
{$product.name}
{/if} {if $show_image==1}
{$product.photo}
{/if} {if $show_code==1}
{__ text="Kod"}: {$product.code}
{/if} {if $show_price==1} {if $product.check_price!=1} {if $price_view=='net_gross'}
{__ text="Cena netto"}: {$product.price_net}
({__ text="Cena brutto"}: {$product.price})
{elseif $price_view=='only_gross'}
{$product.price}
{elseif $price_view=='only_net'}
{__ text="Cena netto"}: {$product.price_net}
{elseif $price_view=='gross_net'}
{__ text="Cena brutto"}: {$product.price}
({__ text="Cena netto"}: {$product.price_net})
{/if} {else}
{/if} {if $show_discount==1 && $product.discount!=0 && ($product.check_price!=1)}
{__ text="Rabat"}: {$product.discount} %
{elseif ($show_old_price==1)} {if ($product.check_old_price==1 && $product.check_price!=1)} {if ($price_view=='net_gross' || $price_view=='only_net')}
{__ text="Stara cena"}: {$product.old_price_net}
{else}
{__ text="Stara cena"}: {$product.old_price}
{/if} {else}
{/if} {else}
{/if} {if $show_basket==1 && $product.check_price!=1} {$product.basket} {elseif $show_basket==1 && $product.check_price==1}
{/if} {/if}
{/foreach}