📄 manager_list.tpl
字号:
{{include file="header.tpl"}}
<div class="pagetitle">后台管理员</div>
<form name="form1" method="post">
<div class="tip">红色为超级管理员</div>
<table class="tborder" cellSpacing="1" cellPadding="4" align="center">
<tr>
<td align="center" colspan="10" class="tcat">后台管理员(共 {{$totalnum}} 个)</td>
</tr>
<tr class="thead" align="center">
<td width="50%" nowrap="nowrap">管理员</td>
<td width="30%" nowrap="nowrap">添加日期</td>
<td width="20%" nowrap="nowrap"></td>
</tr>
{{if $ManagerData}}
{{foreach item=row from=$ManagerData key=key}}
<tr height="18" class="alt{{if $key%2 eq 0}}1{{else}}2{{/if}}" align="center">
<td nowrap="nowrap"><a href="manager.php?type=log&id={{$row.manager_id}}"><span{{if $row.is_super_manager}} class="text_red"{{/if}}>{{$row.manager_name}}</span></td>
<td nowrap="nowrap">{{$row.dateline|date_format:"%Y-%m-%d %H:%M:%S"}}</td>
<td nowrap="nowrap"><a href="manager.php?type=manager&act=edit&id={{$row.manager_id}}">编辑</a> <a href="manager.php?type=manager&act=delete&id={{$row.manager_id}}" onclick="return confirm('确定要删除这个管理员?');">删除</a></td>
</tr>
{{/foreach}}
<tr height="18">
<td colspan="3" class="thead text_left">{{$multipage|default:"只有一页"}}</td>
</tr>
{{else}}
<tr height="18">
<td colspan="3" class="alt1 text_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 + -