Files
ave-cms-alt/templates/default/tpl/request/public.tpl
2025-09-18 17:05:50 +05:00

16 lines
520 B
Smarty
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<form method="post" class="ctrlrequest" action="">
<table>
<tr>
{foreach from=$ctrlrequest item=items key=selname}
<td>
<label>{$items.titel} </label>
<select name="req_{$request_id}[{$selname}]">
<option value=''>Все</option>
{html_options values=$items.options output=$items.options selected=$items.selected}
</select>
</td>
{/foreach}
<td><input type="submit" class="button" value="Отфильтровать" /></td>
</tr>
</table>
</form>