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 / IncludeMyList.vm < prev    next >
Encoding:
Text File  |  2004-07-12  |  1.4 KB  |  51 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. #if ($myList)
  17. <p> </p>
  18. <table align="right" bgcolor="#008800" border="0" cellspacing="2" cellpadding="3">
  19.   <tr bgcolor="#CCCCCC"><td>
  20. <font size="4"><b>Pet Favorites</b></font>
  21. <font size="2"><i><br />Shop for more of your <br />favorite pets here.</i></font>
  22.   </td></tr>
  23.   <tr bgcolor="#FFFF88">
  24.   <td>
  25. #foreach ($product in $myList) 
  26.     <a href="viewProduct.do?productId=$product.productId">
  27.         $product.name</a>
  28.     <br />
  29.     <font size="2">($product.productId")</font>
  30.     <br />
  31. #end
  32.   </td>
  33.   </tr>
  34.   <tr>
  35.   <td>
  36. #if (!$accountForm.myListPage.firstPage)
  37.     <a href="?page=previous"><font color="white"><B><< Prev</B></font></a>
  38. #end
  39. #if (!$accountForm.myListPage.lastPage) {
  40.     <a href="?page=next"><font color="white"><B>Next >></B></font></a>
  41. #end
  42.   </td>
  43.   </tr>
  44.  
  45. </table>
  46. #end
  47.  
  48.  
  49.  
  50.  
  51.