summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics/templates/memory.html
blob: 0ccbca982e255284ad54effdfe0768aa728cf2e4 (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
<div class="col-md-6">
	<div class="panel panel-default">
		<div class="panel-heading">
			{{lang_memoryStats}}
		</div>
		<div class="panel-body">
			<div class="row">
				<div class="col-sm-6">
					<table class="stupidtable filter-col table table-condensed table-striped" data-filter-col="gbram">
						<thead>
							<tr>
								<th data-sort="int">{{lang_ramSize}}</th>
								<th data-sort="int" class="text-right">{{lang_machineCount}}</th>
							</tr>
						</thead>
						<tbody>
							{{#rows}}
							<tr id="ram-{{idx}}" class="{{class}} {{collapse}}">
								<td class="text-left text-nowrap" data-sort-value="{{gb}}">
									<a class="filter-val" data-filter-val="{{gb}}" data-filter-op="~" href="#">{{gb}}&thinsp;GiB</a>
								</td>
								<td class="text-right">{{count}}</td>
							</tr>
							{{/rows}}
							<tr class="slx-decollapse">
								<td colspan="2">
									<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>
						</tbody>
					</table>
				</div>
				<div class="col-sm-6 auto-chart" data-chart="{{json}}" data-chart-dest="#ram-"></div>
			</div>
		</div>
	</div>
</div>