17 lines
386 B
Smarty
Executable File
17 lines
386 B
Smarty
Executable File
<table style="width: 100%">
|
|
<tr>
|
|
<td>
|
|
<img src="modules/EcmQuotes/images/deleterow.gif" style="cursor: pointer;" onclick="hideDetails('{$ID}')"/>
|
|
</td>
|
|
</tr>
|
|
{foreach from=$RES item=r}
|
|
<tr>
|
|
<td align="center">
|
|
<a href="index.php?module=EcmTransactions&action=DetailView&record={$r.id}">{$r.name}</a>
|
|
</td>
|
|
<td align="right">
|
|
{$r.value}
|
|
</td>
|
|
</tr>
|
|
{/foreach}
|
|
</table> |