You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

20 lines
594 B

{* $Id$ *}
<table id="watchlist">
<caption> {tr}Watchlist{/tr} </caption>
<tr>
<th>Variable</th>
<th>Value</th>
</tr>
{section name=i loop=$watchlist}
<tr>
<td class="{cycle advance=false}"{if $smarty.section.i.index == 0} id="firstrow"{/if}>
<code>{$watchlist[i].var}</code>
</td>
<td{if $smarty.section.i.index == 0} id="firstrow"{/if}>
<pre>{$watchlist[i].value|escape:"html"|wordwrap:60:"\n":true|replace:"\n":"<br>"}</pre>
</td>
</tr>
{/section}
</table>