mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-04 01:01:41 +09:00
Add select box to filter by module in document, comment, and file list
This commit is contained in:
parent
02c2f343cd
commit
e0033ac2fc
9 changed files with 105 additions and 60 deletions
|
|
@ -124,8 +124,13 @@ xe.lang.msg_empty_search_keyword = '{$lang->msg_empty_search_keyword}';
|
|||
<form action="./" method="get" class="search center x_input-append" onsubmit="return checkSearch(this)">
|
||||
<input type="hidden" name="module" value="{$module}" />
|
||||
<input type="hidden" name="act" value="{$act}" />
|
||||
<input type="hidden" name="module_srl" value="{$module_srl}" />
|
||||
<input type="hidden" name="error_return_url" value="" />
|
||||
<select name="module_srl" style="margin-right:4px">
|
||||
<option value="">{lang('all')}</option>
|
||||
<!--@foreach($module_list as $item)-->
|
||||
<option value="{$item->module_srl}" <!--@if(isset($module_srl) && $module_srl == $item->module_srl)-->selected="selected"<!--@end-->>{$item->browser_title}</option>
|
||||
<!--@endforeach-->
|
||||
</select>
|
||||
<select name="search_target" title="{$lang->search_target}" style="margin-right:4px">
|
||||
<!--@foreach(lang('comment.search_target_list') as $key => $val)-->
|
||||
<option value="{$key}" <!--@if($search_target==$key)-->selected="selected"<!--@end-->>{$val}</option>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue