groupinfo.html
2.0 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<include file="public@header"/>
</head>
<body>
<div class="wrap">
<ul class="nav nav-tabs">
<li class="active"><a>圈内动态</a></li>
</ul>
<form class="well form-inline margin-top-20" method="post" action="{:url('user/adminIndex/index')}">
</form>
<form method="post" class="js-ajax-form">
<table class="table table-hover table-bordered">
<thead>
<tr>
<th>ID</th>
<th>{:lang('USERNAME')}</th>
<th>头像</th>
<th>文字内容</th>
<th>图片内容</th>
<th>查看评论</th>
<th>编辑操作</th>
</tr>
</thead>
<tbody>
<php>
$user_statuses=array("0"=>lang('USER_STATUS_BLOCKED'),"1"=>lang('USER_STATUS_ACTIVATED'),"2"=>lang('USER_STATUS_UNVERIFIED'));
</php>
<foreach name="list" item="vo">
<tr>
<td>{$vo.id}</td>
<td>{$vo['user_login']?$vo['user_login']:($vo['mobile']?$vo['mobile']:lang('THIRD_PARTY_USER'))}
</td>
<td><img width="25" height="25" src="{:url('user/public/avatar',array('id'=>$vo['id']))}"/></td>
<td>{$vo.content}</td>
<td>
<volist name="$vo.more.photos" id="v">
<img width="100px" src="/upload/firend/{$v}">
</volist>
</td>
<td>
<a href="{:url('commentInfo',['id'=>$vo.id])}">查看评论</a>
</td>
<td>
<a href="{:url('dynamicDelete',['id'=>$vo.id])}" class="js-ajax-delete" >删除动态</a>
</td>
</tr>
</foreach>
</tbody>
</table>
<div class="pagination">{$page}</div>
</form>
</div>
<script src="__STATIC__/js/admin.js"></script>
</body>
</html>