summaryrefslogtreecommitdiffstats
path: root/modules-available/dnbd3/templates/page-proxy-altservers.html
blob: d2e520f9d10f9bd7f0a465dedc0bf52390b030bf (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 role="tabpanel" class="tab-pane" id="tab-altservers">
	<h2>{{lang_altservers}}</h2>
	<table class="table table-condensed">
		<tr>
			<th class="slx-smallcol">{{lang_proxyServerTHead}}</th>
			<th class="slx-smallcol">{{lang_numFails}}</th>
			<th class="text-right slx-smallcol">{{lang_latency}}</th>
			<th class="slx-smallcol">{{lang_flags}}</th>
			<th>{{lang_comment}}</th>
		</tr>
		{{#altservers}}
			<tr>
				<td class="text-nowrap">{{host}}</td>
				<td>
					{{^isClientOnly}}
						{{numFails}}
					{{/isClientOnly}}
				</td>
				<td class="text-right text-nowrap">
					{{^isClientOnly}}
						{{rtt}}&thinsp;ms
					{{/isClientOnly}}
				</td>
				<td class="text-nowrap">
					{{#isClientOnly}}
						[CO]
					{{/isClientOnly}}
					{{#isPrivate}}
						[PO]
					{{/isPrivate}}
				</td>
				<td><table class="slx-ellipsis"><tr><td>{{comment}}</td></tr></table></td>
			</tr>
		{{/altservers}}
	</table>
</div>