-
Notifications
You must be signed in to change notification settings - Fork 0
/
systemlog.tpl
106 lines (101 loc) · 3 KB
/
systemlog.tpl
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{include file="includes/tablestyle"}
<div class="card">
<div class="card-body">
<ul class="nav nav-tabs" role="tablist">
<li class="nav-item">
<a class="nav-link active">
<!-- <span class="d-block d-sm-none"><i class="fas fa-home"></i></span> -->
<span">{$Lang.system_log}</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link " href="loginlog">
<!-- <span class="d-block d-sm-none"><i class="far fa-user"></i></span> -->
<span">{$Lang.log_in}</span>
</a>
</li>
<li class="nav-item">
<a class="nav-link " href="apilog">
<!-- <span class="d-block d-sm-none"><i class="far fa-user"></i></span> -->
<span">{$Lang.api_log}</span>
</a>
</li>
</ul>
<div class="table-container mt-3">
<div class="table-header">
<div class="table-filter">
<div class="row">
<div class="col-sm-6">
</div>
</div>
</div>
<div class="table-search">
{include file="includes/tablesearch" url="systemlog"}
</div>
</div>
<div class="table-responsive">
<table class="table tablelist">
<colgroup>
<col width="50%">
<col>
<col>
<col>
</colgroup>
<thead class="bg-light">
<tr>
<!--<th class="pointer" prop="description">
<span>{$Lang.operation_details}</span>
<span class="text-black-50 d-inline-flex flex-column justify-content-center ml-1 offset-3">
<i class="bx bx-caret-up"></i>
<i class="bx bx-caret-down"></i>
</span>
</th>-->
<th>
<span>{$Lang.operation_details}</span>
</th>
<th class="pointer" prop="create_time">
<span>{$Lang.operation_time}</span>
<span class="text-black-50 d-inline-flex flex-column justify-content-center ml-1 offset-3">
<i class="bx bx-caret-up"></i>
<i class="bx bx-caret-down"></i>
</span>
</th>
<!--<th class="pointer" prop="ipaddr">
<span>{$Lang.ip_address}</span>
<span class="text-black-50 d-inline-flex flex-column justify-content-center ml-1 offset-3">
<i class="bx bx-caret-up"></i>
<i class="bx bx-caret-down"></i>
</span>
</th>-->
<th>
<span>{$Lang.ip_address}</span>
</th>
<!--<th class="pointer" prop="user">
<span>{$Lang.operator}</span>
<span class="text-black-50 d-inline-flex flex-column justify-content-center ml-1 offset-3">
<i class="bx bx-caret-up"></i>
<i class="bx bx-caret-down"></i>
</span>
</th>-->
<th>
<span>{$Lang.operator}</span>
</th>
</tr>
</thead>
<tbody>
{foreach $SystemLog as $list}
<tr>
<td class="d-flex">{$list.description}</td>
<td>{$list.create_time|date="Y-m-d H:i"}</td>
<td>{$list.ipaddr}</td>
<td>{$list.user}</td>
</tr>
{/foreach}
</tbody>
</table>
</div>
<!-- 表单底部调用开始 -->
{include file="includes/tablefooter" url="systemlog"}
</div>
</div>
</div>