📄 team_rank.tpl
字号:
{{include file="header.tpl"}}
<div class="pagetitle">首页联盟排序</div>
<form method="post">
<input type="hidden" name="op" value="rank" />
<table class="tborder" cellSpacing="1" cellPadding="4" align="center">
<tr>
<td align="center" colspan="10" class="tcat">首页联盟列表</td>
</tr>
<tr class="thead" align="center">
<td width="10%" nowrap="nowrap">排序</td>
<td width="*" nowrap="nowrap">联盟名称</td>
<td width="15%" nowrap="nowrap">创建者</td>
<td width="15%" nowrap="nowrap">创建日期</td>
<td width="10%" nowrap="nowrap">操作</td>
</tr>
{{if $TeamData}}
{{foreach item=row from=$TeamData key=key}}
<tr height="18" class="alt{{if $key%2 eq 0}}1{{else}}2{{/if}}" align="center">
<td nowrap="nowrap"><input type="text" name="order[{{$row.team_id}}]" value="{{$row.display_order}}" size="4" maxlength="10" class="formInput" /></td>
<td nowrap="nowrap">{{$row.team_name}}</td>
<td nowrap="nowrap">{{$row.user_name}}</td>
<td nowrap="nowrap">{{$row.create_date|date_format:"%Y-%m-%d %H:%M"}}</td>
<td nowrap="nowrap"><a href="team.php?act=edit&id={{$row.team_id}}">编</a> <a href="team.php?act=delete&id={{$row.team_id}}" onclick="return confirm('确定删除这个联盟?');">删</a>{{if !$row.create_auditing}} <a href="team.php?act=auditing&id={{$row.team_id}}">审</a>{{/if}}</td>
</tr>
{{/foreach}}
<tr height="18" class="thead">
<td align="center"><input type="submit" value="排序" class="formButton" /></td><td colspan="9"></td>
</tr>
{{else}}
<tr height="18">
<td colspan="10" class="alt1" align="center">只有显示在首页的联盟才能够使用排序功能,目前没有需要排序的联盟![<a href="javascript:history.back();">返回上一页</a>]</td>
</tr>
{{/if}}
</table>
</form>
{{include file="footer.tpl"}}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -