summaryrefslogtreecommitdiffstats
path: root/modules-available/statistics/templates/hints-nic-speed.html
blob: 963213cd2b180c8a2e5122bfb1f9af26777e91f9 (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
<h2>{{lang_nicSlowSpeed}}</h2>

<p>{{lang_nicSlowSpeedText}}</p>

<table class="table">
	<thead>
	<tr>
		<th>{{lang_machine}}</th>
		<th>{{lang_nicSpeed}}</th>
		<th>{{lang_nicDuplex}}</th>
	</tr>
	</thead>
	<tbody>
	{{#list}}
		<tr>
			<td>
				<span class="glyphicon {{icon}}"></span>
				<a class="slx-bold" href="?do=statistics&amp;uuid={{machineuuid}}">
				{{hostname}}{{^hostname}}{{clientip}}{{/hostname}}
				</a>
				<div class="small">{{machineuuid}}</div>
			</td>
			<td class="text-nowrap">
				{{nic-speed}}&thinsp;{{lang_MbitPerSecond}}
			</td>
			<td>
				{{nic-duplex}}
			</td>
		</tr>
	{{/list}}
	</tbody>
</table>