index.html
1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<include file="public@header" />
</head>
<body>
<div class="wrap js-check-wrap">
<ul class="nav nav-tabs">
<li class="active"><a href="#">用户反馈列表</a></li>
</ul>
<!--<form class="well form-inline margin-top-20" method="post" action="{:url('User/index')}">-->
<!--</form>-->
<table class="table table-hover table-bordered">
<thead>
<tr>
<th width="50">ID</th>
<th width="150">用户昵称</th>
<th>用户手机</th>
<th>留言内容</th>
<th width="120">留言时间</th>
<th width="50">{:lang('ACTIONS')}</th>
</tr>
</thead>
<tbody>
<foreach name="list" item="vo">
<tr>
<td>{$vo.id}</td>
<td>{$vo.user_nickname}</td>
<td>{$vo.mobile}</td>
<td>{$vo.content}</td>
<td>{:date('Y-m-d H:i',$vo.create_time)}</td>
<td>
<a class="js-ajax-delete" href="{:url('Tickling/delete',array('id'=>$vo['id']))}">{:lang('DELETE')}</a>
</td>
</tr>
</foreach>
</tbody>
</table>
<div class="pagination">{$page}</div>
</div>
<script src="__STATIC__/js/admin.js"></script>
</body>
</html>