55 lines
1.3 KiB
HTML
55 lines
1.3 KiB
HTML
<admintpl file="header"/>
|
|
<body>
|
|
<div class="wrap js-check-wrap">
|
|
<ul class="nav nav-tabs">
|
|
<li class="active"><a>插件演示后台</a></li>
|
|
</ul>
|
|
<div class="common-form">
|
|
<div class="well">
|
|
|
|
<p>
|
|
<b>当前登录管理员id:</b>{$adminid|default='管理员未登录'}
|
|
</p>
|
|
<p>
|
|
<b>插件根目录:</b>__PLUGINROOT__
|
|
</p>
|
|
|
|
<p>
|
|
<b>插件模板根目录:</b>__PLUGINTMPL__
|
|
</p>
|
|
|
|
</div>
|
|
<form method="post" class="js-ajax-form" action="#">
|
|
<div class="table_list">
|
|
<table width="100%" class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th width="50">ID</th>
|
|
<th>用户名</th>
|
|
<th>邮箱</th>
|
|
<th>注册时间</th>
|
|
<th width="120">操作</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<foreach name="users" item="vo">
|
|
<tr>
|
|
<td>{$vo.id}</td>
|
|
<td>{$vo.user_login}</td>
|
|
<td>{$vo.user_email}</td>
|
|
<td>{$vo.create_time}</td>
|
|
<td>
|
|
<a href="javascript:;" >修改</a>|
|
|
<a href="javascript:;" class="js-ajax-delete" >删除</a>
|
|
</td>
|
|
</tr>
|
|
</foreach>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<script src="__PUBLIC__/js/common.js?"></script>
|
|
</body>
|
|
</html> |