summaryrefslogtreecommitdiffstats
path: root/modules-available/dnbd3/templates/page-proxy-images.html
blob: 7e30de20b6a799805526a1f3fa38c95a65bb6500 (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
<div role="tabpanel" class="tab-pane" id="tab-images">
	<h2>{{lang_imageList}}</h2>
	<table class="table table-condensed">
		<tr>
			<th>{{lang_image}}</th>
			<th class="text-right slx-smallcol">{{lang_clients}}</th>
			<th class="text-right slx-smallcol">{{lang_size}}</th>
			<th class="text-right slx-smallcol">{{lang_complete}}</th>
			<th class="slx-smallcol">{{lang_uplink}}</th>
		</tr>
		{{#images}}
			<tr>
				<td class="text-nowrap">
					{{name}}:{{rid}}
				</td>
				<td class="text-right text-nowrap">
					{{users}}
				</td>
				<td class="text-right text-nowrap">
					{{size_s}}
				</td>
				<td class="text-right text-nowrap">
					{{complete}}&thinsp;%
				</td>
				<td class="text-nowrap">
					{{uplinkServer}}
				</td>
			</tr>
		{{/images}}
	</table>
</div>