-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathX1Tmapper.html
44 lines (36 loc) · 1.07 KB
/
X1Tmapper.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
<body>
<div class="container">
<div class="page-header">
<h1>Xenon1T mapping</h1>
<!-- <p>Reactive data tables in Meteor</p> -->
</div>
<div style="float:left; width:75%;">
{{>table}}
</div>
<div style="float:left; width:25%;">
{{> drawPmts}}
</div>
</div>
</body>
<template name="table">
{{> tabular table=TabularTables.Pmts selector=selector class="table table-striped table-bordered table-condensed table-hover"}}
</template>
<template name="pmtCell">
<div class='cell'>{{PMT_Location}}</div>
</template>
<template name="ampCell">
<div class='cell'>{{Amp_module}}</div>
</template>
<template name="adcCell">
<div class='cell'>{{ADC_module}}</div>
</template>
<template name="hvCell">
<div class='cell'>{{HV_module}}</div>
</template>
<template name="drawPmts">
<it style="float:right"> {{getType}} PMT array </it>
{{> pmt_canvas}}
</template>
<template name="pmt_canvas">
<div id='pmt_canvas' style='float:center'></div>
</template>