-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexp.html
More file actions
50 lines (48 loc) · 1007 Bytes
/
exp.html
File metadata and controls
50 lines (48 loc) · 1007 Bytes
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
<template name="expAdmin">
<div class="container">
<div class="row header">
<div class="col-md-12">
<h3 class="text-muted">Experiment {{groupId}}</h3>
</div>
</div>
<div class="row">
<div class="col-md-12">
<svg></svg>
</div>
</div>
</div>
</template>
<template name="expAdminOld">
<div class="container">
<div class="row header">
<div class="col-md-12">
<h3 class="text-muted">Experiment Admin</h3>
</div>
</div>
<div class="row">
<div class="col-md-12">
<table class="table table-condensed">
<thead>
<th>Round</th>
<th>Timestamp</th>
<th>Worker</th>
<th>Action</th>
</thead>
<tbody>
{{#each actions}}
{{> actionAdmin}}
{{/each}}
</tbody>
</table>
</div>
</div>
</div>
</template>
<template name="actionAdmin">
<tr class={{rowStyle}}>
<td>{{roundIndex}}</td>
<td>{{_tsRenderTime timestamp}}</td>
<td>{{workerId}}</td>
<td>{{action}}</td>
</tr>
</template>