home *** CD-ROM | disk | FTP | other *** search
- #*
- Copyright 1999-2004 The Apache Software Foundation
-
- Licensed under the Apache License, Version 2.0 (the "License");
- you may not use this file except in compliance with the License.
- You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- See the License for the specific language governing permissions and
- limitations under the License.
- *#
- #parse("view/velocity/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"><< $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><< Prev</B></font></a>
- #end
- #if (!$lastPage)
- <a href="${continuation.id}.kont?page=next"><font color="white"><B>Next >></B></font></a>
- #end
- </td></tr>
- </table>
- </p>
-
- #parse("view/velocity/IncludeBottom.vm")
-
-
-
-
-
-