summaryrefslogtreecommitdiffstats
path: root/templates/statistics/clientlist.html
blob: 879e27c48f6becb7107cdda537c76402da95d1b9 (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
<h1>{{lang_clientList}}</h1>
<div class="pull-right">{{filter}} ~= {{argument}}</div>
<div class="clearfix"></div>

<table class="table table-condensed table-striped">
	<tr>
		<th>{{lang_machine}}</th>
		<th>{{lang_address}}</th>
		<th class="text-right">{{lang_lastBoot}}</th>
		<th>{{lang_kvmSupport}}</th>
		<th class="text-right">{{lang_gbRam}}</th>
		<th class="text-right">{{lang_tmpGb}}</th>
		<th>{{lang_cpuModel}}</th>
	</tr>
	{{#rows}}
	<tr>
		<td class="slx-nowrap">
			{{#hasnotes}}<span class="glyphicon glyphicon-exclamation-sign pull-right"></span>{{/hasnotes}}
			<a href="?do=Statistics&amp;uuid={{machineuuid}}"><b>{{hostname}}</b></a>
			<div class="small">{{machineuuid}}</div>
		</td>
		<td><b><a href="?do=Statistics&amp;filter=subnet&amp;argument={{subnet}}">{{subnet}}</a>{{lastoctet}}</b><br>{{macaddr}}</td>
		<td class="text-right">{{lastboot}}</td>
		<td class="{{kvmclass}}">{{kvmstate}}</td>
		<td class="text-right {{ramclass}}">{{gbram}}&thinsp;GiB</td>
		<td class="text-right {{hddclass}}">{{gbtmp}}&thinsp;GiB</td>
		<td>{{lang_realCores}}: {{realcores}}<div class="small">{{cpumodel}}</div></td>
	</tr>
	{{/rows}}
</table>