summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics/templates/cpumodels.html
blob: e133bec60acd1ff2556519074aff697f84f78c3b (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
<div class="col-md-12">
	<div class="panel panel-default">
		<div class="panel-heading">
			{{lang_modelStats}}
		</div>
		<div class="panel-body">
			<div class="row">
				<div class="col-md-8">
					<table class="stupidtable table table-condensed table-striped table-responsive">
						<thead>
							<tr>
								<th data-sort="string">{{lang_modelName}}</th>
								<th data-sort="int" class="slx-smallcol text-right">{{lang_cpuCores}}</th>
								<th data-sort="int" class="slx-smallcol text-right">{{lang_modelCount}}</th>
							</tr>
						</thead>
						<tbody>
							{{#rows}}
							<tr id="sysmdl-{{idx}}" class="{{collapse}}">
								<td data-sort-value="{{systemmodel}}" class="text-left text-nowrap filter-col" data-filter-col="systemmodel">
									<table class="slx-ellipsis"><tr><td>
									<a class="filter-val" data-filter-val="{{systemmodel}}" href="#">{{systemmodel}}</a>
									</td></tr></table>
								</td>
								<td data-sort-value="{{cores}}" class="text-right filter-col" data-filter-col="realcores">
									<a class="filter-val" data-filter-val="{{cores}}" href="#">{{cores}}</a>
								</td>
								<td class="text-right">{{count}}</td>
							</tr>
							{{/rows}}
							<tr class="slx-decollapse">
								<td colspan="3">
									<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-md-4 auto-chart" data-chart="{{json}}" data-chart-dest="#sysmdl-"></div>
			</div>
		</div>
	</div>
</div>