📄 reactivate.tpl
字号:
{strip}
{assign var="page_hdr01_text" value="{lang mkey='cancel_list'}"}
{include file="admin/admin_page_hdr01.tpl"}
<br />
<center>
<table width="100%" border="0" cellpadding="0" cellspacing="0" >
<tr>
<td class="module_detail_inside" width="100%">
{assign var="ct" value=$cancel_list|@count}
{assign var="page_hdr02_text" value="{lang mkey='total_profiles_found'} "|cat:$ct}
{include file="admin/admin_page_hdr02.tpl"}
<table class="table" cellspacing="{$config.cellspacing}"
cellpadding="{$config.cellpadding}" width="100%" border="0">
<tbody>
{if $errmsg != '' or $cancel_list|@count <= 0 }
<tr>
<td colspan="5">
{if $errmsg != ''}
{mylang mkey='errormsgs' skey=$errmsg}
{elseif $cancel_list|@count <= 0 }
{lang mkey='no_record_found'}
{/if}
</td>
</tr>
{/if}
{if $cancel_list|@count > 0 }
<tr class="table_head">
<th width="2%">{lang mkey='col_head_srno'}</th>
<th width="10%"><a href="?sort={lang mkey='col_head_username' escape='url'}&type={$sort_type}">{lang mkey='col_head_username'}</a></th>
<th width="15%"><a href="?sort={lang mkey='col_head_firstname' escape='url'}&type={$sort_type}">{lang mkey='col_head_name'}</a></th>
<th width="20%">{lang mkey='cancel_date'}</th>
<th width="7%">{lang mkey='action'}</th>
</tr>
{assign var="mcount" value="0"}
{foreach item=item key=key from=$cancel_list}
{math equation="$mcount+1" assign="mcount"}
<tr class="{cycle values="oddrow,evenrow"}">
<td>{$mcount}</td>
<td>{if $config.enable_mod_rewrite == 'Y'}
<a href="javascript:popUpScrollWindow('{if $config.seo_username == 'Y'}{$item.username}{else}{$item.id}.htm{/if}','top',650,600)">
{else}
<a href="javascript:popUpScrollWindow('showprofile.php?{if $config.seo_username == 'Y'}username={$item.username}{else}id={$item.id}{/if}','top',650,600)">
{/if}
{$item.username}</a>
</td>
<td>{$item.firstname|stripslashes} {$item.lastname|stripslashes}</td>
<td nowrap>{$item.regdate|date_format:$lang.DATE_FORMAT}</td>
<td>
<input type="button" class="formbutton" value="{lang mkey='reactivate'}" onclick="javascript:window.location='reactivate.php?id={$item.id}';">
</td>
</tr>
{/foreach}
{/if}
</tbody>
</table>
</td>
</tr>
</table>
</center>
{/strip}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -