forked from wialon/wialon-app-actualizer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
104 lines (87 loc) · 3.26 KB
/
index.html
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
<!-- ************************************************************************
Apps - WEB applications, developed on the basis of SDK for Wialon Hosting and Wialon Kit.
http://apps.wialon.com
Copyright:
2002-2013 Gurtam, http://gurtam.com
License:
MIT: https://github.com/wialon/wialon-app-actualizer/blob/master/LICENSE-MIT
Authors:
* Gurtam
************************************************************************ -->
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<link rel="shortcut icon" href="img/favicon.ico" type="image/x-icon">
<title>Actualizer</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
<meta http-equiv="pragma" content="no-cache"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta names="apple-mobile-web-app-status-bar-style" content="black-translucent" />
<script type="text/javascript" src="./js/jquery-1.10.2.min.js"></script>
<script src="./js/jquery-ui-1.10.3.custom.min.js"></script>
<link href="./css/jquery-ui-1.10.3.custom.css" rel="stylesheet">
<link rel="stylesheet" media="screen" type="text/css" href="./css/style.css"/>
<script type="text/javascript" src="./js/jquery.localisation.js"></script>
<script type="text/javascript" src="./js/table.js"></script>
<script type="text/javascript" src="./js/main.js"></script>
</head>
<body>
<div id="header">
<img id="logo" src="./img/logo.png" alt="Actualizer" /> <span id="app-name">Actualizer</span>
</div>
<div id="table-wrap">
<table id="paginated-table" class="ptable">
<thead>
<tr>
<th scope="col" id="id-col-head"></th>
<th scope="col" id="units-col-head"><span id="units-col">Unit</span><span id="refresh-btn"><img src="./img/refresh.png" alt="Refresh"></span></th>
<th scope="col" id="messages-col-head"><span id="messages-col" class="desc">Last Message</span></th>
<th scope="col" id="days-count-col-head">
<div id="slider-button"></div>
<div class="input-slider" id="days-filter">
<div id="slider"></div>
</div>
<span id="days"></span> <span id="days-head">Days</span>
</th>
</tr>
</thead>
<tbody></tbody>
</table>
</div>
<div class="table-footer" id="table-footer">
<div id="table-instruments" style="margin-left: 28px;">
<span>
<select id="nrowonpage" class="input-select">
<option value="10">10</option>
<option value="25">25</option>
<option value="50">50</option>
<option value="100">100</option>
<option value="250">250</option>
<option value="1000">500</option>
</select>
</span>
<div class="vseparator"></div>
<div id="top" class="pfirst pbtn">
<span></span>
</div>
<div id="prev" class="pprev pbtn">
<span></span>
</div>
<span id="page">Page </span>
<input type="text" id="page_selector" size="4" value="1" alt="">
<span id="of"> of </span>
<span id="cpages">0</span>
<div id="next" class="pnext pbtn">
<span></span>
</div>
<div id="last" class="plast pbtn">
<span></span>
</div>
<div class="vseparator"></div>
<span id="pagestat"></span>
<div class="clear"></div>
</div>
</div>
</body>
</html>