6 lines
262 B
Smarty
Executable File
6 lines
262 B
Smarty
Executable File
<select name="vendedorId" id="vendedorId" class="largeInput" style="width:220px">
|
|
<option value="todos">Todos</option>
|
|
{foreach from=$resVend item=item key=key}
|
|
<option value="{$item.usuarioId}">{$item.nombre} {$item.apellidos}</option>
|
|
{/foreach}
|
|
</select> |