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="index.do"><b><font color="BLACK" size="2"><< Main Menu</font></b></a>
- </td></tr>
- </table>
-
- <p>
- <center>
- <h2>$category.name</h2>
- </center>
- <table align="center" bgcolor="#008800" border="0" cellspacing="2" cellpadding="3">
- <tr bgcolor="#CCCCCC"> <td><b>Product ID</b></td> <td><b>Name</b></td> </tr>
- #foreach ($product in $productList)
- <tr bgcolor="#FFFF88">
- <td><b><a href="viewProduct.do?productId=$product.productId"><font color="BLACK">$product.productId</font></a></b></td>
- <td>$product.name</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")
-
-
-
-