mirror of
https://github.com/Lastorder-DC/rhymix.git
synced 2026-01-07 02:31:40 +09:00
Search UI cleaning.
git-svn-id: http://xe-core.googlecode.com/svn/branches/maserati@12044 201d5d3c-b55e-5fd7-737f-ddc643e51545
This commit is contained in:
parent
02791646ed
commit
58c460935f
6 changed files with 107 additions and 110 deletions
|
|
@ -5,40 +5,42 @@
|
|||
</div>
|
||||
<p>{$lang->about_point_module} {$lang->point_update_desc}</p>
|
||||
<!-- SEARCH -->
|
||||
<form action="./" method="get" no-error-return-url="true" class="x_clearfix" style="margin:0 0 -45px 0">
|
||||
<input type="hidden" name="module" value="{$module}" />
|
||||
<input type="hidden" name="act" value="{$act}" />
|
||||
<fieldset class="x_pull-right">
|
||||
<select name="is_admin" style="width:auto">
|
||||
<option value="" <!--@if($is_admin!='Y')-->selected="selected"<!--@end-->>{$lang->total}</option>
|
||||
<option value="Y" <!--@if($is_admin=='Y')-->selected="selected"<!--@end-->>{$lang->is_admin}</option>
|
||||
</select>
|
||||
<select name="is_denied" style="width:auto">
|
||||
<option value="" <!--@if($is_denied!='Y')-->selected="selected"<!--@end-->>{$lang->total}</option>
|
||||
<option value="Y" <!--@if($is_denied=='Y')-->selected="selected"<!--@end-->>{$lang->denied}</option>
|
||||
</select>
|
||||
<select name="selected_group_srl" style="width:auto" title="{$lang->member_group}">
|
||||
<option value="0">{$lang->member_group}</option>
|
||||
<!--@foreach($group_list as $key => $val)-->
|
||||
<option value="{$val->group_srl}" <!--@if($selected_group_srl==$val->group_srl)-->selected="selected"<!--@end-->>{$val->title}</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
<select name="search_target" title="{$lang->search_target}">
|
||||
<option value="{$identifier}" selected="selected"|cond="$search_target == $identifier">{Context::getLang($identifier)}</option>
|
||||
<!--@foreach($lang->search_target_list as $key => $val)-->
|
||||
<option value="{$key}" <!--@if($search_target==$key)-->selected="selected"<!--@end-->>{$val}</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
<span class="x_input-append">
|
||||
<input type="search" required name="search_keyword" value="{htmlspecialchars($search_keyword)}" title="{$lang->cmd_search}" style="width:100px" />
|
||||
<button type="submit" class="x_btn x_btn-inverse">{$lang->cmd_search}</button>
|
||||
<button class="x_btn" type="button" onclick="location.href='{getUrl('','module',$module,'act',$act)}';return false;">{$lang->cmd_cancel}</button>
|
||||
</span>
|
||||
</fieldset>
|
||||
</form>
|
||||
|
||||
<table class="x_table x_table-striped x_table-hover">
|
||||
<caption>Total <strong>{number_format($total_count)}</strong>, Page <strong>{number_format($page)}</strong>/{number_format($total_page)}</caption>
|
||||
<caption>
|
||||
Total <strong>{number_format($total_count)}</strong>, Page <strong>{number_format($page)}</strong>/{number_format($total_page)}
|
||||
<form action="./" method="get" no-error-return-url="true" class="x_pull-right"style="margin:0">
|
||||
<input type="hidden" name="module" value="{$module}" />
|
||||
<input type="hidden" name="act" value="{$act}" />
|
||||
<fieldset>
|
||||
<select name="is_admin" style="width:auto">
|
||||
<option value="" <!--@if($is_admin!='Y')-->selected="selected"<!--@end-->>{$lang->total}</option>
|
||||
<option value="Y" <!--@if($is_admin=='Y')-->selected="selected"<!--@end-->>{$lang->is_admin}</option>
|
||||
</select>
|
||||
<select name="is_denied" style="width:auto">
|
||||
<option value="" <!--@if($is_denied!='Y')-->selected="selected"<!--@end-->>{$lang->total}</option>
|
||||
<option value="Y" <!--@if($is_denied=='Y')-->selected="selected"<!--@end-->>{$lang->denied}</option>
|
||||
</select>
|
||||
<select name="selected_group_srl" style="width:auto" title="{$lang->member_group}">
|
||||
<option value="0">{$lang->member_group}</option>
|
||||
<!--@foreach($group_list as $key => $val)-->
|
||||
<option value="{$val->group_srl}" <!--@if($selected_group_srl==$val->group_srl)-->selected="selected"<!--@end-->>{$val->title}</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
<select name="search_target" title="{$lang->search_target}">
|
||||
<option value="{$identifier}" selected="selected"|cond="$search_target == $identifier">{Context::getLang($identifier)}</option>
|
||||
<!--@foreach($lang->search_target_list as $key => $val)-->
|
||||
<option value="{$key}" <!--@if($search_target==$key)-->selected="selected"<!--@end-->>{$val}</option>
|
||||
<!--@end-->
|
||||
</select>
|
||||
<span class="x_input-append">
|
||||
<input type="search" required name="search_keyword" value="{htmlspecialchars($search_keyword)}" title="{$lang->cmd_search}" style="width:100px" />
|
||||
<button type="submit" class="x_btn x_btn-inverse">{$lang->cmd_search}</button>
|
||||
<button class="x_btn" type="button" onclick="location.href='{getUrl('','module',$module,'act',$act)}';return false;">{$lang->cmd_cancel}</button>
|
||||
</span>
|
||||
</fieldset>
|
||||
</form>
|
||||
</caption>
|
||||
<thead>
|
||||
<tr>
|
||||
<th scope="col">{$lang->no}</th>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue