summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics_reporting/templates/_page.html
blob: 1f4ac52c7a3e205ffac60aa6fa0060837816a451 (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
<table id="table-total" class="table table-condensed table-striped">
	<thead>
	<tr>
		<th class="text-left col-md-2"></th>
		<th class="text-left column-totaltime">{{lang_totalTime}}</th>
		<th class="text-left column-mediantime">{{lang_medianSessionLength}}</th>
		<th class="text-left column-longsessions">{{lang_longSessions}}</th>
		<th class="text-left column-shortsessions">{{lang_shortSessions}}</th>
		<th class="text-left column-timeoffline">{{lang_overallOfftime}}</th>
	</tr>
	</thead>
	<tbody>
	<tr>
		<th class="text-left">{{lang_total}}</th>
		<td class="text-left column-totaltime">{{time_s}}</td>
		<td class="text-left column-mediantime">{{medianTime_s}}</td>
		<td class="text-left column-longsessions">{{sessions}}</td>
		<td class="text-left column-shortsessions">{{shortSessions}}</td>
		<td class="text-left column-timeoffline">{{totalOfftime_s}}</td>
	</tr>
	</tbody>
</table>
<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 column-totaltime">{{lang_totalTime}}</th>
		<th data-sort="int" data-sort-default="desc" class="text-left column-mediantime">{{lang_medianSessionLength}}</th>
		<th data-sort="int" data-sort-default="desc" class="text-left column-longsessions">{{lang_longSessions}}</th>
		<th data-sort="int" data-sort-default="desc" class="text-left column-shortsessions">{{lang_shortSessions}}</th>
		<th data-sort="int" data-sort-default="desc" class="text-left column-timeoffline">{{lang_totalOffTime}}</th>
	</tr>
	</thead>
	<tbody>
	{{#perLocation}}
	<tr>
		<td class="locationName text-left">{{location}}</td>
		<td data-sort-value="{{time}}" class="text-left column-totaltime">{{time_s}}</td>
		<td data-sort-value="{{medianTime}}" class="text-left column-mediantime">{{medianTime_s}}</td>
		<td class="text-left column-longsessions">{{sessions}}</td>
		<td class="text-left column-shortsessions">{{shortSessions}}</td>
		<td data-sort-value="{{offTime}}" class="text-left column-timeoffline">{{offTime_s}}</td>
	</tr>
	{{/perLocation}}
	</tbody>
</table>
<table id="table-perclient" class="table table-condensed table-striped">
	<thead>
	<tr>
		<th data-sort="string" class="text-left col-md-4">{{lang_hostname}}</th>
		<th data-sort="string" class="text-left column-location">{{lang_location}}</th>
		<th data-sort="int" data-sort-default="desc" class="text-left column-totaltime">{{lang_totalTime}}</th>
		<th data-sort="int" data-sort-default="desc" class="text-left column-mediantime">{{lang_medianSessionLength}}</th>
		<th data-sort="int" data-sort-default="desc" class="text-left column-longsessions">{{lang_longSessions}}</th>
		<th data-sort="int" data-sort-default="desc" class="text-left column-shortsessions">{{lang_shortSessions}}</th>
		<th data-sort="int" data-sort-default="desc" class="text-left column-timeoffline">{{lang_totalOffTime}}</th>
		<th data-sort="int" data-sort-default="desc" class="text-left column-lastlogout">{{lang_clientLogout}}</th>
		<th data-sort="int" data-sort-default="desc" class="text-left column-laststart">{{lang_clientStart}}</th>
	</tr>
	</thead>
	<tbody>
	{{#perClient}}
	<tr>
		<td class="text-left">{{hostname}}</td>
		<td class="text-left column-location"><a class="locationLink" href="#">{{location}}</a></td>
		<td data-sort-value="{{time}}" class="text-left column-totaltime">{{time_s}}</td>
		<td data-sort-value="{{medianTime}}" class="text-left column-mediantime">{{medianTime_s}}</td>
		<td class="text-left column-longsessions">{{sessions}}</td>
		<td class="text-left column-shortsessions">{{shortSessions}}</td>
		<td data-sort-value="{{offTime}}" class="text-left column-timeoffline">{{offTime_s}}</td>
		<td data-sort-value="{{lastLogout}}" class="text-left column-lastlogout">{{lastLogout_s}}</td>
		<td data-sort-value="{{lastStart}}" class="text-left column-laststart">{{lastStart_s}}</td>
	</tr>
	{{/perClient}}
	</tbody>
</table>
<table id="table-peruser" class="table table-condensed table-striped">
	<thead>
	<tr>
		<th data-sort="string" class="text-left col-md-4">{{lang_user}}</th>
		<th data-sort="int" data-sort-default="desc" class="text-left column-sessions">{{lang_sessions}}</th>
	</tr>
	</thead>
	<tbody>
	{{#perUser}}
	<tr>
		<td class="text-left">{{user}}</td>
		<td class="text-left column-sessions">{{sessions}}</td>
	</tr>
	{{/perUser}}
	</tbody>
</table>
<table id="table-pervm" class="table table-condensed table-striped">
	<thead>
	<tr>
		<th data-sort="string" class="text-left col-md-4">{{lang_vm}}</th>
		<th data-sort="int" data-sort-default="desc" class="text-left column-sessions">{{lang_sessions}}</th>
	</tr>
	</thead>
	<tbody>
	{{#perVM}}
	<tr>
		<td class="text-left">{{vm}}</td>
		<td class="text-left column-sessions">{{sessions}}</td>
	</tr>
	{{/perVM}}
	</tbody>
</table>