Primer commit del sistema avantika sin cambios
This commit is contained in:
24
templates/items/monederos-base.tpl
Executable file
24
templates/items/monederos-base.tpl
Executable file
@@ -0,0 +1,24 @@
|
||||
<tr>
|
||||
<td align="center">{$item.tipo}</td>
|
||||
<td align="center">{$item.fecha|date_format:"%d-%m-%Y"}</td>
|
||||
<td align="center">{$item.codigo}</td>
|
||||
<td align="center">${$item.saldo|number_format:2:'.':','}</td>
|
||||
<td align="center">
|
||||
<a href="javascript:void(0)" onclick="ShowHistorial({$item.monederoId})">
|
||||
<img src="{$WEB_ROOT}/images/icons/details.png" border="0" />
|
||||
</a>
|
||||
</td>
|
||||
<td align="center">{$item.status}</td>
|
||||
<td align="center">
|
||||
<img src="{$WEB_ROOT}/images/icons/edit.gif" class="spanEdit" id="{$item.monederoId}" title="Editar"/>
|
||||
<img src="{$WEB_ROOT}/images/icons/delete.gif" class="spanDelete" id="{$item.monederoId}" title="Eliminar"/>
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
<tr id="historial_{$item.monederoId}" style="display:none">
|
||||
<td> </td>
|
||||
<td colspan="6" align="left">
|
||||
{include file="{$DOC_ROOT}/templates/lists/monederos-historial.tpl"}
|
||||
</td>
|
||||
</tr>
|
||||
|
||||
Reference in New Issue
Block a user