This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
khosb/themes/default/blocks/product_cat/t_Paged Listing.tpl

73 lines
2.2 KiB
Smarty
Raw Normal View History

2009-08-03 04:10:16 +00:00
{if $VAR.id == ''}
{$block->display('product_cat:user_menu')}
{else}
{$method->exe_noauth('product_cat','user_view')}
2009-08-03 04:10:16 +00:00
<!-- Show the category drill-down -->
{include file='file:pre_t_CategoryDrill.tpl'}
{/if}
<!-- Show subcategories -->
2009-08-03 04:10:16 +00:00
{if $product_sub_cat != ''}
<br/>
{include file='file:pre_t_SubCategories.tpl'}
{/if}
<!-- Show each product -->
2009-08-03 04:10:16 +00:00
{if $product_arr}
{foreach from=$product_arr item=product}
<table width=100% border="0" cellspacing="0" cellpadding="0" class="table_background">
<tr>
<td>
<table width="100%" border="0" cellspacing="1" cellpadding="0">
<tr valign="top">
<td width="65%">
<table width="100%" border="0" cellspacing="0" cellpadding="0" class="table_heading_cart">
<tr valign="top">
<td width="78%" >
<a href="{$URL}?_page=product:details&id={$product.id}">
{if $list->translate('product_translate','name,description_short,description_full','product_id',$product.id,'prod_translate')}
{$prod_translate.name}
{else}
{$product.sku}
{/if}
</a>
</td>
<td width="22%" valign="middle" align="right"><b>{$list->format_currency_num($product.price_base,$smarty.const.SESS_CURRENCY)}</b></td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td width="65%" class="row1">
<table width="100%" border="0" cellspacing="0" cellpadding="5" class="body" bgcolor="#FFFFFF">
<tr valign="top">
{if $product.thumbnail != ''}
<td width="8%" valign="top">
<a href="{$URL}?_page=product:details&id={$product.id}"><img src="{$URL}{$smarty.const.URL_IMAGES}{$product.thumbnail}" hspace="5" border="0"/></a>
</td>
{/if}
<td width="92%" align="left">
{if $prod_translate.description_short != ''}
{$prod_translate.description_short}
{else}
{t}No Description{/t}
{/if}
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br/>
{/foreach}
<!-- Show product paging -->
{include file='file:post_t_Pages.tpl'}
{else}
2009-08-03 04:10:16 +00:00
{t}No Products in this Category{/t}
{/if}