home_newuserlist.tpl

来自「太烦了」· TPL 代码 · 共 42 行

TPL
42
字号
{strip}
<table width="100%" border="0" cellpadding="0" cellspacing="0" >
	<tr>
		<td class="module_detail" width="100%">
			{assign var="page_hdr01_text" value="{lang mkey='newmemberlist'}"}
			{include file="page_hdr01.tpl"}

			<table  width="100%" cellpadding="{$config.cellpadding}"  cellspacing="{$config.cellspacing}" border="0">
				{assign var="xtd" value="0"}
				{foreach item=user from=$newUsersList}
  {if $xtd is div by 2}
	{cycle values="oddrow,evenrow" assign="class"}
	<tr class="{$class}">
  {/if}
					<td class="{$class}">
					{if $config.enable_mod_rewrite == 'Y'}
						<a href="javascript:popUpScrollWindow2('{$docroot}{if $config.seo_username == 'Y'}{$user.username}{else}{$user.id}.htm{/if}','top',650,600)">
					{else}
						<a href="javascript:popUpScrollWindow2('{$docroot}showprofile.php?{if $config.seo_username == 'Y'}username={$user.username}{else}id={$user.id}{/if}','top',650,600)">
					{/if}
					{$user.username}
					</a>
					</td>
  {if $xtd is not div by 2}
					</tr>
			{/if}
  {assign value=$xtd+1 var=xtd}
				{/foreach}
  {if $xtd is not div by 2}
	</tr>
  {/if}
				<tr>
					<td colspan="2">
						<a href="newmemberslist.php">{lang mkey='showfulllist'}</a>
					</td>
				</tr>
			</table>
		</td>
	</tr>
</table>
<br />
{/strip}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?