index.html
2.1 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
56
57
58
59
60
61
<include file="public@header"/>
</head>
<body>
<div class="wrap js-check-wrap">
<ul class="nav nav-tabs">
<li class="active"><a href="{:url('AdminAsset/index')}">资源列表</a></li>
</ul>
<php>$status=['不可用', '可用'];</php>
<table class="table table-hover table-bordered margin-top-20">
<thead>
<tr>
<th width="50">ID</th>
<th>用户</th>
<th>文件大小</th>
<th>文件名</th>
<th>图像</th>
<th>文件路径</th>
<th>状态</th>
<th width="160">{:lang('ACTIONS')}</th>
</tr>
</thead>
<tbody>
<php>
$asset_img_suffixes=['bmp','jpg','jpeg','png','gif','tiff'];/*TODO ADD MORE*/
</php>
<foreach name="assets" item="vo">
<tr>
<td>{$vo.id}</td>
<td>
用户ID:{$vo.user_id} {$vo.user_login} {$vo.user_nickname}
</td>
<td>{$vo.file_size/1024|round}KB</td>
<td>{$vo.filename}</td>
<td>
<if condition="in_array(strtolower($vo['suffix']),$asset_img_suffixes)">
<a href="javascript:parent.imagePreviewDialog('{:cmf_get_image_preview_url($vo['file_path'])}');">
<i class="fa fa-photo fa-fw"></i>
</a>
</if>
</td>
<td>
{$vo.file_path}
<if condition="!file_exists('upload/'.$vo['file_path'])">
<span style='color:red;'>  (文件丢失)</span>
</if>
</td>
<td>{$status[$vo['status']]}</td>
<td>
<a href="{:url('AdminAsset/delete',array('id'=>$vo['id']))}" class="js-ajax-delete">{:lang('DELETE')}</a>
</td>
</tr>
</foreach>
</tbody>
</table>
<div class="pagination">{$page|default=''}</div>
</div>
<script src="__STATIC__/js/admin.js"></script>
</body>
</html>