-
Notifications
You must be signed in to change notification settings - Fork 0
/
cerebro-kpis.html
55 lines (54 loc) · 2.16 KB
/
cerebro-kpis.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>j4rv1s - mark I</title>
<meta name="description"content="mobile first, app, web app, responsive, admin dashboard, flat, flat ui">
<meta name="viewport"content="width=device-width, initial-scale=1, maximum-scale=1">
<link rel="stylesheet"href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css"type="text/css"/>
<link rel="stylesheet"href="css/cerebro-kpis.css"type="text/css"/>
<!--[if lt IE 9]> <script src="js/ie/respond.min.js" cache="false"></script> <script src="js/ie/html5.js" cache="false"></script> <script src="js/ie/excanvas.js" cache="false"></script> <![endif]-->
</head>
<body>
<!-- Content begins -->
<div class="container-fluid content">
<!-- __ Filters __ -->
<div class="row">
<div class="col-md-6">
<div class="panel panel-default">
<div class="panel-heading">
Filters
</div>
<div class="panel-body">
<div id="no-table" class="panel-body">
<table id="pr-list" class="table table-hover sortable">
<thead>
<th>Product</th>
<th class="text-right">Uptime</th>
<th class="text-right">Change <small>%</small></th>
</thead>
<tbody>
<tr>
<td data-title="product">Product name</td>
<td data-title="uptime" class="text-right">99,97 %</td>
<td data-title="delta" class="text-right">- 2 %</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
</div><!-- /panel -->
</div><!-- /row -->
</div><!-- /container -->
</body>
<script src="https://code.jquery.com/jquery-2.1.4.min.js"></script>
<script src="js/tablesorter.js"></script>
<script>
$(document).ready(function(){
$(function(){
$("#pr-list").tablesorter();
});
});
</script>
</html>