📄 showsimpsh_popup.tpl
字号:
{strip}
{include file="popheader.tpl"}
<table width="100%" border="0" cellpadding="0" cellspacing="0" >
<tr>
<td class="module_detail" width="100%">
{* {$smarty.session.LastQuery} *}
{assign var="page_hdr01_text" value="{lang mkey='search_results'}"}
{include file="page_hdr01.tpl"}
<table class="table" cellspacing="{$config.cellspacing}" cellpadding="{$config.cellpadding}" border="0" width="100%">
<tbody>
<tr>
<td>
<table width="100%">
<tr>
<td align="left">
<input type="button" class="formbutton" value="{lang mkey='my_matches'}" onclick="javascript: document.location.href='search_popup.php';">
<input type="button" value="{lang mkey='extended_search'}" class="formbutton" onclick="javascript: document.location.href='extsearch_popup.php';">
</td>
<td align="right">
<input type="button" value="{lang mkey='close_window'}" class="formbutton" onclick="javascript: window.opener.focus(); window.close();">
</td>
</tr>
</table>
</td>
</tr>
{if $error == 1 }
<tr>
<td>{lang mkey='no_record_found'}</td>
</tr>
{else}
<tr><td colspan="2">{lang mkey='total_profiles_found'} {$totalrecs}</td></tr>
<tr>
<form action="" method="post">
<td height="21" valign="bottom">
{lang mkey='sort_by'}
<select name="sort_by">
<option value="username" {if $sort_by eq 'username'} selected {/if}>{lang mkey='username_without_colon'}</option>
<option value="age" {if $sort_by eq 'age'}selected{/if}> {lang mkey='age'} </option>
<option value="logintime" {if $sort_by eq 'logintime'}selected{/if}>{lang mkey='logintime'}</option>
</select>
<select name="sort_order">
{html_options options=$lang.sort_types selected=$sort_order}
</select>
{lang mkey='results_per_page'}
<select name="results_per_page">
{html_options options=$lang.search_results_per_page selected=$psize}
</select>
<input type="submit" class="formbutton" value="{lang mkey='show'}">
{foreach from=$querystring key=key item=item}
<input type="hidden" name="{$key}" value="{$item}">
{/foreach}
</td>
</form>
</tr>
<tr><td colspan="2" height="21" valign="bottom">Showing {$start+1} {lang mkey='to'}{assign var="totl" value=$data|@count}{$start+$totl}
</td>
</tr>
<tr>
<td align="left">
<table border="0">
{assign var="ccount" value="0"}
{foreach item=item key=key from=$data}
{if $item.id > 0}
{if $ccount==0}
<tr>
{/if}
<td align="left">{include file="userresultviewsmall_popup.tpl"}</td>
{if $ccount==1}
</tr>
{/if}
{math equation="$ccount+1" assign="ccount"}
{math equation="$ccount%2" assign="ccount"}
{/if}
{/foreach}
</table>
</td>
</tr>
{/if}
</tbody>
</table>
<table align="center" border="0" cellpadding="0" cellspacing="0" >
<tbody>
<tr>
{if $prev != "" }
<td>
<a href="?page={$prev}
{foreach from=$querystring key=key item=val}
&{$key}={$val}
{/foreach}
" ><-- {lang mkey='previous'}</a>
</td>
{/if}
{if $cpage != "" && $pages != "" }
<td>
{lang mkey='pageno'} {$cpage} {lang mkey='of'} {$pages}
</td>
{/if}
{if $next != "" }
<td >
<a href="?page={$next} {foreach from=$querystring key=key item=val}
&{$key}={$val}
{/foreach}
">{lang mkey='next'} --></a>
</td>
{/if}
</tr>
</tbody>
</table>
</td>
</tr>
</table>
{include file="popfooter.tpl"}
{/strip}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -