home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2004 December / PCpro_2004_12.ISO / files / webserver / xampp / xampp-cocoon-addon-1.4.9-installer.exe / Product.vm < prev    next >
Encoding:
Text File  |  2004-07-12  |  2.0 KB  |  70 lines

  1. #*
  2.   Copyright 1999-2004 The Apache Software Foundation
  3.  
  4.   Licensed under the Apache License, Version 2.0 (the "License");
  5.   you may not use this file except in compliance with the License.
  6.   You may obtain a copy of the License at
  7.  
  8.       http://www.apache.org/licenses/LICENSE-2.0
  9.  
  10.   Unless required by applicable law or agreed to in writing, software
  11.   distributed under the License is distributed on an "AS IS" BASIS,
  12.   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13.   See the License for the specific language governing permissions and
  14.   limitations under the License.
  15. *#
  16. #parse("view/velocity/IncludeTop.vm")
  17.  
  18.  
  19. <table align="left" bgcolor="#008800" border="0" cellspacing="2" cellpadding="2">
  20. <tr><td bgcolor="#FFFF88">
  21. <a href="viewCategory.do?categoryId=$product.category"> <b><font color="BLACK" size="2"><< $product.category</font></b></a>
  22. </td></tr>
  23. </table>
  24.  
  25. <p>
  26.  
  27. <center>
  28.   <b><font size="4">$product.name</font></b>
  29. </center>
  30.  
  31. <table align="center" bgcolor="#008800" border="0" cellspacing="2" cellpadding="3">
  32.   <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>
  33. #foreach ($item in $itemList)
  34.   <tr bgcolor="#FFFF88">
  35.   <td><b>
  36.  
  37.  <a href="viewItem.do?itemId=$item.itemId">
  38.  $item.itemId</a></b></td>
  39.   <td>$item.productId</td>
  40.   <td>
  41.      $item.attr1
  42.      $!item.attr2
  43.      $!item.attr3
  44.      $!item.attr4
  45.      $!item.attr5
  46.      $product.name
  47.    </td>
  48.   <td>$fmt.formatNumber($item.listPrice, '$#,##0.00')</td>
  49.   <td><a href="addItemToCart.do?itemId=$item.itemId">
  50.   <img border="0" src="images/button_add_to_cart.gif" /></a></td>
  51.   </tr>
  52. #end
  53.   <tr><td>
  54. #if (!$firstPage)
  55.     <a href="${continuation.id}.kont?page=previous"><font color="white"><B><< Prev</B></font></a>
  56. #end
  57. #if (!$lastPage)
  58.     <a href="${continuation.id}.kont?page=next"><font color="white"><B>Next >></B></font></a>
  59. #end
  60.   </td></tr>
  61. </table>
  62. </p>
  63.  
  64. #parse("view/velocity/IncludeBottom.vm")
  65.  
  66.  
  67.  
  68.  
  69.  
  70.