index.html
3.9 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
<include file="public@header"/>
</head>
<body>
<div class="wrap js-check-wrap">
<ul class="nav nav-tabs">
<li class="active"><a href="{:url('link/index')}">所有友情链接</a></li>
<li><a href="{:url('link/add')}">添加友情链接</a></li>
</ul>
<form method="post" class="js-ajax-form margin-top-20" action="{:url('Link/listOrder')}">
<div class="table-actions">
<button class="btn btn-primary btn-sm js-ajax-submit" type="submit">{:lang('SORT')}</button>
<button class="btn btn-primary btn-sm js-ajax-submit" type="submit"
data-action="{:url('link/toggle',array('display'=>1))}" data-subcheck="true">{:lang('DISPLAY')}
</button>
<button class="btn btn-primary btn-sm js-ajax-submit" type="submit"
data-action="{:url('link/toggle',array('hide'=>1))}" data-subcheck="true">{:lang('HIDE')}
</button>
</div>
<php>$status=array("1"=>lang('DISPLAY'),"0"=>lang('HIDDEN'));</php>
<table class="table table-hover table-bordered table-list">
<thead>
<tr>
<th width="16"><label><input type="checkbox" class="js-check-all" data-direction="x"
data-checklist="js-check-x"></label></th>
<th width="50">{:lang('SORT')}</th>
<th width="50">ID</th>
<th>{:lang('NAME')}</th>
<th>链接地址</th>
<th width="50">{:lang('STATUS')}</th>
<th width="120">{:lang('ACTIONS')}</th>
</tr>
</thead>
<tbody>
<foreach name="links" item="vo">
<tr>
<td><input type="checkbox" class="js-check" data-yid="js-check-y" data-xid="js-check-x" name="ids[]"
value="{$vo.id}"></td>
<td><input name='list_orders[{$vo.id}]' class="input input-order mr5" type='text' size='3'
value='{$vo.list_order}'></td>
<td>{$vo.id}</td>
<td>{$vo.name}</td>
<td><a href="{$vo.url}" target="_blank">{$vo.url}</a></td>
<td>{$status[$vo['status']]}</td>
<td>
<a href="{:url('link/edit',array('id'=>$vo['id']))}">{:lang('EDIT')}</a>
<a href="{:url('link/delete',array('id'=>$vo['id']))}" class="js-ajax-delete">
{:lang('DELETE')}
</a>
</td>
</tr>
</foreach>
</tbody>
<tfoot>
<tr>
<th width="16">
<label>
<input type="checkbox" class="js-check-all" data-direction="x" data-checklist="js-check-x">
</label>
</th>
<th width="50">{:lang('SORT')}</th>
<th width="50">ID</th>
<th>{:lang('NAME')}</th>
<th>链接地址</th>
<th width="50">{:lang('STATUS')}</th>
<th width="120">{:lang('ACTIONS')}</th>
</tr>
</tfoot>
</table>
<div class="table-actions">
<button class="btn btn-primary btn-sm js-ajax-submit" type="submit">{:lang('SORT')}</button>
<button class="btn btn-primary btn-sm js-ajax-submit" type="submit"
data-action="{:url('link/toggle',array('display'=>1))}" data-subcheck="true">{:lang('DISPLAY')}
</button>
<button class="btn btn-primary btn-sm js-ajax-submit" type="submit"
data-action="{:url('link/toggle',array('hide'=>1))}" data-subcheck="true">{:lang('HIDE')}
</button>
</div>
</form>
</div>
<script src="__STATIC__/js/admin.js"></script>
</body>
</html>