summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics_reporting/templates/table-location.html
blob: 9479b7af096ca0264a6425391f473bb2a280b920 (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
<table id="table-perlocation" class="table table-condensed table-striped">
	<thead>
	<tr>
		<th data-sort="string" class="text-left col-md-2">{{lang_location}}</th>
		<th data-sort="int" data-sort-default="desc" class="text-left col_totalTime">{{lang_totalTime}}</th>
		<th data-sort="int" data-sort-default="desc" class="text-left col_medianSessionLength">{{lang_medianSessionLength}}</th>
		<th data-sort="int" data-sort-default="desc" class="text-left col_longSessions">{{lang_longSessions}}</th>
		<th data-sort="int" data-sort-default="desc" class="text-left col_shortSessions">{{lang_shortSessions}}</th>
		<th data-sort="int" data-sort-default="desc" class="text-left col_totalOffTime">{{lang_totalOffTime}}</th>
	</tr>
	</thead>
	<tbody>
	{{#data}}
	<tr{{#highlight}} class="info"{{/highlight}}>
		<td class="locationName text-left">{{location}}</td>
		<td data-sort-value="{{time}}" class="text-left col_totalTime">{{time_s}}</td>
		<td data-sort-value="{{medianTime}}" class="text-left col_medianSessionLength">{{medianTime_s}}</td>
		<td class="text-left col_longSessions">{{sessions}}</td>
		<td class="text-left col_shortSessions">{{shortSessions}}</td>
		<td data-sort-value="{{offTime}}" class="text-left col_totalOffTime">{{offTime_s}}</td>
	</tr>
	{{/data}}
	</tbody>
</table>