summaryrefslogtreecommitdiffstats
path: root/modules-available/dnbd3/templates/page-proxy-loclist.html
blob: 67c90683598c6a18d469c6769874cdb5c6f536e5 (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
<div class="col-md-6">
	<h2>{{lang_clientsByLocation}}</h2>

	<table class="table table-condensed">
		<tr>
			<th>{{lang_location}}</th>
			<th class="text-right">{{lang_count}}</th>
			<th class="text-right">{{lang_recursiveCount}}</th>
		</tr>
		{{#list}}
			<tr>
				<td>
					{{#depth}}
						<div style="display:inline-block;width:{{depth}}em"></div>
					{{/depth}}
					{{locationname}}
				</td>
				<td class="text-right">
					{{clientCount}}
				</td>
				<td class="text-right">
					{{recCount}}
				</td>
			</tr>
		{{/list}}
	</table>
</div>