blob: a7679a60cb763ea0b12ac5cfc1effae753fe6174 [file]
Demonstration of Table Decorator.
<p/>
$table
<p>&nbsp;</p>
#if ($customerDetail)
<b>Customer Details</b>
<table border="0" cellspacing="2" cellpadding="2">
<tr>
<td><b>Name</b></td><td>&nbsp;</td><td>$customerDetail.name</td>
</tr>
<tr>
<td><b>Email</b></td><td>&nbsp;</td>
<td><a style="{text-decoration:none;}" href="mailto:$customerDetail.email">$customerDetail.email</a></td>
</tr>
<tr>
<td><b>Age</b></td><td>&nbsp;</td><td>$customerDetail.age</td>
</tr>
<tr>
<td><b>Investments</b></td><td>&nbsp;</td><td>$customerDetail.investments</td>
</tr>
<tr>
<td><b>Holdings</b></td><td>&nbsp;</td><td>$format.currency($customerDetail.holdings)</td>
</tr>
<tr>
<td><b>Date Joined</b></td><td>&nbsp;</td><td>$format.date($customerDetail.dateJoined, "dd MMM yyyy")</td>
</tr>
</table>
#end