summaryrefslogtreecommitdiffstats
path: root/modules-available/dnbd3/templates/page-proxy-clients.html
blob: 9e7cec4c4754f38f59cc311589e1d7a8a48676c2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<div class="col-md-6">
	<h2>{{lang_clientList}}</h2>

	<table class="table table-condensed">
		<tr>
			<th>{{lang_client}}</th>
			<th class="text-right">{{lang_bytesSent}}</th>
		</tr>
		{{#clients}}
			<tr>
				<td>
					{{address}}
				</td>
				<td data-sort="int" data-sort-value="{{bytesSent}}" class="text-right">
					{{bytesSent_s}}
				</td>
			</tr>
		{{/clients}}
	</table>
</div>