blob: ffaa747b7d892dd96cc8164b8295952bc39a94c1 (
plain) (
blame)
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
|
<div class="row">
<div class="col-md-12">
<div class="panel panel-default">
<div class="panel-heading">
{{lang_usageDetails}}
</div>
<div class="panel-body">
<div class="row">
<div class="col-sm-6">
<table class="table table-condensed">
<tr>
<th>Type</th>
<th>When</th>
<th>Length</th>
</tr>
{{#rows}}
<tr>
<td><span class="glyphicon glyphicon-{{glyph}}"></span></td>
<td>{{from}}</td>
<td>{{duration}}</td>
</tr>
{{/rows}}
</table>
</div>
<div class="col-sm-6">
<table class="table table-condensed">
{{#hasrows2}}
<tr>
<th>Type</th>
<th>When</th>
<th>Length</th>
</tr>
{{/hasrows2}}
{{#rows2}}
<tr>
<td><span class="glyphicon glyphicon-{{glyph}}"></span></td>
<td>{{from}}</td>
<td>{{duration}}</td>
</tr>
{{/rows2}}
</table>
</div>
</div>
<div class="timebar"> {{{graph}}}</div>
<div>
{{lang_timebarDesc}}
</div>
</div>
</div>
</div>
</div>
|