This repository was archived by the owner on May 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathoverview.html
66 lines (62 loc) · 2.36 KB
/
overview.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
<div class="row-fluid">
<div class="span12">
<span id="Overview" ></span>
<h1>Willkommen <i class="firstname"></i>!</h1>
<p>
<small>Du hast <i>n</i> neue Nachrichten:</small>
</p>
<div class="alert alert-block alert-error fade in">
<button type="button" class="close" data-dismiss="alert">×</button>
<h4 class="alert-heading">Warning!</h4>
<p>Es gibt derzeit <a href="#XXX">2 Fehler</a> bei deinen Knoten!</p>
</div>
<div class="alert alert-success">
<button type="button" class="close" data-dismiss="alert">×</button>
Ok, settings übernommen Beispiels-text
</div>
</div>
</div>
<hr>
<!-- Overview of Nodes -->
<div class="row-fluid">
<div class="span7">
<div id="node-overview">
<h2><span id="Nodes">Nodes</span></h2>
<table id="nodelist" class="table table-bordered table-hover table-condensed">
<thead>
<tr>
<td>Name</td>
<td># Devices</td>
<td>Online?</td>
<td>Alerts</td>
<td>Created</td><td>Action</td>
</tr>
</thead>
<tbody>
{{#nodes}}
<tr id="{{pid}}">
<td class="name">{{attributes_raw.name}}</td>
<td>0</td>
<td>0</td>
<td>0</td>
<td>date</td>
<td>
<div class="btn btn-small name"><i class="icon-eye-open icon-white"></i></div>
<div class="btn btn-small edit"> <i class="icon-pencil icon-white"></i></div>
</td>
</tr>
{{/nodes}}
</tbody>
</table>
</div> <!-- end of node overview div -->
<div id="node"></div> <!-- here the node info (editing) will be filled in -->
</div> <!-- end of span7 div -->
<!-- ...Graphs, Statistics, Topolgy graphs, ping-plots for all nodes -->
<div id="statistics" class="span5">
<h2>Graphs / Statistiken</h2>
<p><img src="https://marvin.funkfeuer.at/smokeping/freenet/rei6/nanom5wan_last_10800.png" /></p>
<p><img src="https://marvin.funkfeuer.at/smokeping/freenet/rei6/nanom5wan_last_86400.png" /></p>
<p><img src="https://marvin.funkfeuer.at/smokeping/freenet/rei6/nanom5wan_last_604800.png" /></p>
<p><img src="https://marvin.funkfeuer.at/smokeping/freenet/rei6/nanom5wan_last_31536000.png" /></p>
</div>
</div> <!-- end of row fluid -->