35 lines
1.1 KiB
Smarty
35 lines
1.1 KiB
Smarty
{if $module_saved_js != false}
|
|
<form id="search_saved" method="post" action="" enctype="multipart/form-data">
|
|
|
|
<table width="100%" border="0" cellspacing="0" cellpadding="1" class="table_background">
|
|
<tr>
|
|
<td class="table_heading">{t}Your Saved Searches{/t}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>
|
|
<table width="100%" border="0" cellspacing="3" cellpadding="1" class="row1">
|
|
<tr class="row1" valign="top">
|
|
<td>
|
|
<select name="search_id" onchange="fill_search_saved(s_mod,s_fields,s_field_count,s_limit,s_order,s_s,s_c);">
|
|
<option value="">...</option>
|
|
{foreach from=$module_saved_menu item=record}
|
|
<option value="{$record.id}">{$record.name|capitalize}</option>
|
|
{/foreach}
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
<tr class="row1" valign="top">
|
|
<td><input type="submit" name="Submit" value="{t}View{/t}" class="form_button"/></td>
|
|
</tr>
|
|
</table>
|
|
{$module_saved_js}
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div>
|
|
<input type="hidden" name="_page" value="module:search_show"/>
|
|
</div>
|
|
</form>
|
|
{/if}
|