summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics_reporting/templates/table-total.html
blob: 83078714748c5d82a6cfb887982537a8e691c083 (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
<table id="table-total" class="table table-condensed table-striped table-nowrap stupidtable">
	<thead>
	<tr>
		<th></th>
		<th class="col_totalTime">{{lang_totalTime}}</th>
		<th class="col_medianSessionLength">{{lang_medianSessionLength}}</th>
		<th class="col_longSessions">{{lang_longSessions}}</th>
		<th class="col_shortSessions">{{lang_shortSessions}}</th>
		<th class="col_totalOffTime">{{lang_totalOffTime}}</th>
		<th class="col_totalOffTime">(%)</th>
		<th class="col_totalStandbyTime">{{lang_totalStandbyTime}}</th>
		<th class="col_totalStandbyTime">(%)</th>
		<th class="col_totalSessionTime">{{lang_totalSessionTime}}</th>
		<th class="col_totalSessionTime">(%)</th>
		<th class="col_totalIdleTime">{{lang_totalIdleTime}}</th>
		<th class="col_totalIdleTime">(%)</th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<td>{{lang_total}}</td>
		<td class="col_totalTime">{{data.totalTime_s}}</td>
		<td class="col_medianSessionLength">{{data.medianSessionLength_s}}</td>
		<td class="col_longSessions">{{data.longSessions}}</td>
		<td class="col_shortSessions">{{data.shortSessions}}</td>
		<td class="text-right col_totalOffTime">{{data.totalOffTime_s}}</td>
		<td class="col_totalOffTime p-addon">{{data.totalOffTime_p}}&thinsp;%</td>
		<td class="text-right col_totalStandbyTime">{{data.totalStandbyTime_s}}</td>
		<td class="col_totalStandbyTime p-addon">{{data.totalStandbyTime_p}}&thinsp;%</td>
		<td class="text-right col_totalSessionTime">{{data.totalSessionTime_s}}</td>
		<td class="col_totalSessionTime p-addon">{{data.totalSessionTime_p}}&thinsp;%</td>
		<td class="text-right col_totalIdleTime">{{data.totalIdleTime_s}}</td>
		<td class="col_totalIdleTime p-addon">{{data.totalIdleTime_p}}&thinsp;%</td>
	</tr>
	</tbody>
</table>