blob: f69c2a7cc3f4761584a709696617fbb939c114e2 [file] [log] [blame]
#parse("view/templates/IncludeTop.vm")
<table align="left" bgcolor="#008800" border="0" cellspacing="2" cellpadding="2">
<tr><td bgcolor="#FFFF88">
<a href="viewCategory.do?categoryId=$product.category"> <b><font color="BLACK" size="2">&lt;&lt; $product.category</font></b></a>
</td></tr>
</table>
<p>
<center>
<b><font size="4">$product.name</font></b>
</center>
<table align="center" bgcolor="#008800" border="0" cellspacing="2" cellpadding="3">
<tr bgcolor="#CCCCCC"> <td><b>Item ID</b></td> <td><b>Product ID</b></td> <td><b>Description</b></td> <td><b>List Price</b></td> <td> </td> </tr>
#foreach ($item in $itemList)
<tr bgcolor="#FFFF88">
<td><b>
<a href="viewItem.do?itemId=$item.itemId">
$item.itemId</a></b></td>
<td>$item.productId</td>
<td>
$item.attr1
$!item.attr2
$!item.attr3
$!item.attr4
$!item.attr5
$product.name
</td>
<td>$fmt.formatNumber($item.listPrice, '$#,##0.00')</td>
<td><a href="addItemToCart.do?itemId=$item.itemId">
<img border="0" src="images/button_add_to_cart.gif" /></a></td>
</tr>
#end
<tr><td>
#if (!$firstPage)
<a href="${continuation.id}.kont?page=previous"><font color="white"><B>&lt;&lt; Prev</B></font></a>
#end
#if (!$lastPage)
<a href="${continuation.id}.kont?page=next"><font color="white"><B>Next &gt;&gt;</B></font></a>
#end
</td></tr>
</table>
</p>
#parse("view/templates/IncludeBottom.vm")