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_plugin/plugin_prod_EXAMPLE.tpl
2008-11-26 14:50:40 -08:00

24 lines
786 B
Smarty

{$list->unserial($product.prod_plugin_data, "plugin_data")}
<table width="100%" border="0" cellspacing="0" cellpadding="4">
{if $service.id}
{/if}
<tr valign="top" class="row2">
<td width="34%">Product SKU </td>
<td width="66%">
{ $list->menu("no", "product_prod_plugin_data[sku]", "product", "sku", $plugin_data.sku, "") }
Example Assoc Menu </td>
</tr>
<tr valign="top" class="row2">
<td>Quanity </td>
<td><label>
<input name="product_prod_plugin_data[qty]" type="text" value="{$plugin_data.qty}" size="4" maxlength="3">
</label> </td>
</tr>
<tr valign="top" class="row2">
<td>Boolean</td>
<td>
<input type="checkbox" name="product_prod_plugin_data[bool]" value="1" {if $plugin_data.bool}checked{/if}>
</td>
</tr>
</table>