-
Notifications
You must be signed in to change notification settings - Fork 1
/
sc-draft.html
71 lines (67 loc) · 2.27 KB
/
sc-draft.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
<!-- simple-todos.html -->
<head>
<title>XE1T SC Example</title>
</head>
<body>
<header class="navbar navbar-fixed-top emo-navbar">
<div class="navbar-header" style="height:40px">
<button type="button" class="navbar-toggle"
data-toggle="collapse" data-target=".navbar-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand toggle-sidebar">
XENON1T Slow Control Viewer
</a>
</div>
<ul class="nav navbar-nav navbar-right" style="margin-right:10px;margin-top:10px;">
</ul>
</header>
<div class="container">
<div class="row" style="margin:10px">
<div class="col-xs-3"><strong>Updated: </strong></div>
<div class="col-xs-6">{{scvalues.time}}</div>
<div class="col-xs-3"><button class="btn btn-info" id="refresh">Refresh Plots</button></div>
</div>
<div class="row">
<div class="col-md-12 col-sm-12 col-xs-12">
<ul>
{{#each scvalues.sensors}}
{{> text}}
{{/each}}
</ul>
</div>
<!-- <div class="col-md-8 col-sm-8 col-xs-12">
{{> plot_0}}
</div>-->
</div>
</div>
</body>
<template name="text">
<div class="col-sm-6 col-xs-12">
<div class="row" style="background-color:#DDDDDD">
<div class="col-xs-6">
<h5><strong>{{ name }}: </strong></h5>
</div>
<div class="col-xs-6">
<h5>{{ value }}</h5>
</div>
</div>
<div id="flot-{{index}}" class='flot' style="height:150px"></div>
</div>
</template>
<template name="plot_0">
<!-- <div id="flot-0" class='flot' style="height:150px"></div>
<div id="flot-1" class='flot' style="height:150px"></div>
<div id="flot-2" class='flot' style="height:150px"></div>
<div id="flot-3" class='flot' style="height:150px"></div>
<div id="flot-4" class='flot' style="height:150px"></div>
<div id="flot-5" class='flot' style="height:150px"></div>
<div id="flot-6" class='flot' style="height:150px"></div>
<div id="flot-7" class='flot' style="height:150px"></div>
<div id="flot-8" class='flot' style="height:150px"></div>
<div id="flot-9" class='flot' style="height:150px"></div>
<div id="flot-10" class='flot' style="height:150px"></div>
-->
</template>