summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics_reporting/templates/table-total.html
blob: 8e24dc017785c3b5c277e4a9f1bdf4539e191cd6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<table id="table-total" class="table table-condensed table-striped">
	<thead>
	<tr>
		<th class="text-left col-md-2"></th>
		<th class="text-left col_totaltime">{{lang_totalTime}}</th>
		<th class="text-left col_mediantime">{{lang_medianSessionLength}}</th>
		<th class="text-left col_longsessions">{{lang_longSessions}}</th>
		<th class="text-left col_shortsessions">{{lang_shortSessions}}</th>
		<th class="text-left col_timeoffline">{{lang_overallOfftime}}</th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<th class="text-left">{{lang_total}}</th>
		<td class="text-left col_totaltime">{{data.time_s}}</td>
		<td class="text-left col_mediantime">{{data.medianTime_s}}</td>
		<td class="text-left col_longsessions">{{data.sessions}}</td>
		<td class="text-left col_shortsessions">{{data.shortSessions}}</td>
		<td class="text-left col_timeoffline">{{data.totalOfftime_s}}</td>
	</tr>
	</tbody>
</table>