8 lines
248 B
Smarty
Executable File
8 lines
248 B
Smarty
Executable File
<select name="usuarioId2" id="usuarioId2" class="smallInput">
|
|
{if $Usr.type != "cajero"}
|
|
<option value="">Todos</option>
|
|
{/if}
|
|
{foreach from=$usuarios item=item key=key}
|
|
<option value="{$item.usuarioId}">{$item.nombre}</option>
|
|
{/foreach}
|
|
</select> |