Fixing an issue with output parameters that are of type IntPtr
[castle.git] / Samples / MonoRail / GettingStartedSampleVS2005 / GettingStartedSample / Views / Product / list.vm
blob5a97ee58cc644ce8d4f2303ac21edd2bcfc07ec2
1 \r
2 <h3>Product list</h3>\r
3 \r
4 <p>\r
5 <a href="new.rails">Create new Product</a>\r
6 </p>\r
7 \r
8 <table width="100%" border="1" cellpadding="2" cellspacing="0">\r
9 <tr>\r
10         <th>Id</th>\r
11         <th>Name</th>\r
12         <th>Supplier</th>\r
13         <th>&nbsp;</th>\r
14 </tr>\r
15 #foreach($product in $products)\r
16 <tr>\r
17         <td align="center">$product.Id</td>\r
18         <td align="center">$product.Name</td>\r
19         <td align="center">$product.Supplier.Name</td>\r
20         <td align="center">\r
21                 <a href="edit.rails?id=${product.Id}">Edit</a> | \r
22                 <a href="delete.rails?id=${product.Id}">Delete</a>\r
23         </td>\r
24 </tr>\r
25 #end\r
26 </table>\r