Files
ventas_php/templates/lists/conjunto-valores.tpl

26 lines
749 B
Smarty
Executable File

<table width="50%" cellpadding="0" cellspacing="0" border="1">
<tr>
<td align="center" height=""><div align="center">Talla</div></td>
<td align="center" width="80">&nbsp;</td>
</tr>
{foreach from=$conTallas item=item key=key}
<tr>
<td align="center" height="30">
<div align="center">
{include file="{$DOC_ROOT}/templates/lists/enumTallasCon.tpl"}
</div>
</td>
<td align="center">
<div align="center">
<a href="javascript:void(0)">
<img src="{$WEB_ROOT}/images/icons/action_delete.gif" title="Eliminar" onclick="DelTalla({$key})" />
</a>
</div>
</td>
</tr>
{foreachelse}
<tr>
<td colspan="2" align="center" height="40"><div align="center">Ningun registro encontrado.</div></td>
</tr>
{/foreach}
</table>