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/pre_t_SubCategories.tpl
2011-05-03 09:49:01 +10:00

51 lines
1.5 KiB
Smarty

<!-- Show subcategories -->
{foreach from=$product_sub_cat item=record}
{assign var=cat_translate value=''}
<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">
<tr valign="top">
<td class="table_heading_cart">
<a href="{$URL}?_page=product_cat:t_{$record.template}&id={$record.id}">
<b>
{if $list->translate('product_cat_translate','name,description','product_cat_id',$record.id,'cat_translate')}
{$cat_translate.name}
{else}
{$record.name}
{/if}
</b>
</a>
</td>
</tr>
</table>
</td>
</tr>
<tr valign="top">
<td width="65%" class="row1">
<table width="100%" border="0" cellspacing="0" cellpadding="5" class="body">
<tr valign="top">
<td>
{if $record.thumbnail != ''}
<a href="{$URL}?_page=product_cat:t_{$record.template}&id={$record.id}"><img align="left" src="{$URL}{$smarty.const.URL_IMAGES}{$record.thumbnail}" hspace="5" border="0"/></a>
{/if}
{if $cat_translate.description!= ''}
{$cat_translate.description}
{else}
{t}No Description{/t}
{/if}
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>
</table>
<br/>
{/foreach}