summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics_reporting/templates/table-vm.html
blob: 9a775709e5c641e6efff7ed527add7362edd954a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<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 col_sessions">{{lang_sessions}}</th>
	</tr>
	</thead>
	<tbody>
	{{#data}}
	<tr>
		<td class="text-left">{{vm}}</td>
		<td class="text-left col_sessions">{{sessions}}</td>
	</tr>
	{{/data}}
	</tbody>
</table>