blob: 799288a764335a772aea71d4bea333c566189d44 (
plain)
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
|
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<% include ../partials/head %>
<% include ../partials/header %>
<title>SDN-C AdminPortal</title>
</head>
<body>
<div class="actions" style="padding:0px 25px;">
<h2>User Trace</h2>
</div>
<% if ( typeof result != 'undefined' ) {
if (result.code.length > 0) {
if ( result.code == 'success' ) { %>
<div class='alert alert-success' role='alert'><%=result.msg %></div>
<% } else { %>
<div class='alert alert-danger' role='danger'><%=result.msg %></div>
<% } %>
<% } %>
<% } %>
<% if( typeof privilege != 'undefined'){
var priv = privilege.privilege;
} else {
var priv = 'A';
} %>
<div class="container-fluid">
<div class="actions" style="padding:15px 0px;">
</div>
<div class="content">
<table class="table table-hover">
<thead>
<tr>
<th>Date</th>
<th>ATTUID</th>
<th>Action</th>
<th>Description</th>
</tr>
</thead>
<tbody>
<% if (rows) {
rows.forEach(function(row) { %>
<tr>
<td><%= row.date %></td>
<td><%= row.attuid %></td>
<td><%= row.action %></td>
<td><%= row.description %></td>
</tr>
<% }); }; %>
</tbody>
</table>
</div>
<footer>
<% include ../partials/footer %>
</footer>
</body>
</html>
|