sintonia/livesupport/modules/htmlUI/var/html/templates/scratchpad.tpl

22 lines
661 B
Smarty
Raw Normal View History

2005-02-10 15:03:50 +01:00
{*Smarty template*}
<div id="scratchpad">
<center><b>ScratchPad</b></center>
{if is_array($sp)}
<table>
2005-02-11 20:25:29 +01:00
<tr><th></th><th>{tra 0=Name}</th><th>{tra 0=Duration}</th><th>{tra 0=Type}</th><th>Del</th></tr>
2005-02-10 15:03:50 +01:00
{foreach from=$sp item=i}
<tr>
2005-02-11 20:25:29 +01:00
<td><input type="checkbox" name="spid[{$i.id}]"></td>
<td>{$i.title}</td>
2005-02-10 15:03:50 +01:00
<td>{$i.duration}</td>
<td>{$i.type} </td>
2005-02-14 17:23:55 +01:00
<th><a href="#" onclick="hpopup('{$UI_HANDLER}?act=remFromSP&id={$i.id}', 'remFromSP')">X</th>
2005-02-10 15:03:50 +01:00
</tr>
{/foreach}
2005-02-11 20:25:29 +01:00
<tr><td></td><td colspan="2">[Edit]</td><td colspan="2">[Delete]</td></tr>
2005-02-10 15:03:50 +01:00
</table>
{/if}
</div>