summaryrefslogtreecommitdiffstats
path: root/modules-available/vmstore/templates/benchmark-imgselect.html
blob: 26ac898e192e66ddf0344ec7c496faf134378eb5 (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
37
38
39
40
41
<h1>{{lang_benchmark}}</h1>

<h3>{{lang_selectImage}}</h3>

<form role="form" method="post" action="?do=vmstore">
	<input type="hidden" name="token" value="{{token}}">
	<input type="hidden" name="show" value="benchmark">
	<input type="hidden" name="id" value="{{id}}">

	<table class="table">
		<thead>
		<tr>
			<th>{{lang_image}}</th>
			<th class="slx-smallcol">{{lang_users}}</th>
			<th class="slx-smallcol">{{lang_size}}</th>
		</tr>
		</thead>
		<tbody>
		{{#list}}
			<tr>
				<td>
					<div class="radio radio-inline">
						<input type="radio" id="r-{{id}}" name="image" value="{{name}}">
						<label for="r-{{id}}">{{name}}</label>
					</div>
				</td>
				<td class="text-right">{{users}}</td>
				<td class="text-right">{{size}}</td>
			</tr>
		{{/list}}
		</tbody>
	</table>

	<div class="buttonbar text-right">
		<button type="submit" name="action" value="start" class="btn btn-primary">
			<span class="glyphicon glyphicon-play"></span>
			{{lang_start}}
		</button>
	</div>

</form>