summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics/templates/newclients.html
blob: c5c704d1a63f4c7799465be2a2f1b835d41748fd (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
<div class="col-md-6">
	<div class="panel panel-default">
		<div class="panel-heading">
			{{lang_newMachines}}
		</div>
		<div class="panel-body">
			<table class="table table-condensed table-striped">
				<tr>
					<th>{{lang_machine}}</th>
					<th class="text-right"></th>
					<th>64Bit</th>
					<th class="text-right">RAM</th>
					<th class="text-right">HDD</th>
				</tr>
				{{#rows}}
				<tr class="{{collapse}}">
					<td class="text-nowrap"><a href="?do=Statistics&amp;uuid={{machineuuid}}">{{hostname}}</a></td>
					<td class="text-right">{{firstseen}}</td>
					<td class="{{kvmclass}}">{{kvmicon}}</td>
					<td class="text-right {{ramclass}}">{{gbram}}&thinsp;GiB</td>
					<td class="text-right {{hddclass}}">{{gbtmp}}&thinsp;GiB</td>
				</tr>
				{{/rows}}
				<tr class="slx-decollapse">
					<td colspan="5">
						<span class="btn-group btn-group-justified">
							<span class="btn btn-default btn-sm">
								<span class="glyphicon glyphicon-menu-down"></span>
							</span>
						</span>
					</td>
				</tr>
			</table>
		</div>
	</div>
</div>