summaryrefslogtreecommitdiffstats
path: root/modules-available/dnbd3/templates/page-proxy-images.html
blob: ff420ffdce1dc7468dbb0ca42606a33d124cfa30 (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
<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="text-right slx-smallcol">{{lang_unusedFor}}</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-right text-nowrap">
					{{idle_s}}
				</td>
				<td class="text-nowrap">
					{{uplinkServer}}
				</td>
			</tr>
		{{/images}}
	</table>
</div>