summaryrefslogtreecommitdiffstats
path: root/modules-available/serversetup-bwlp-ipxe/templates/bootentry-list.html
blob: dfc4e6a809cc70d2165c1175905632e463cab998 (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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
<h2>{{lang_bootentryHead}}</h2>

<p>
	{{lang_bootentryIntro}}
</p>

<form method="post" action="?do=serversetup">
	<input type="hidden" name="token" value="{{token}}">
	<input type="hidden" name="action" value="deleteBootentry">
	<table class="table">
		<thead>
		<tr>
			<th>{{lang_entryId}}</th>
			<th>{{lang_bootentryTitle}}</th>
			<th>{{lang_hotkey}}</th>
			<th class="slx-smallcol">{{lang_refCount}}</th>
			<th class="slx-smallcol">{{lang_edit}}</th>
			{{#allowEdit}}<th class="slx-smallcol">{{lang_copy}}</th>{{/allowEdit}}
			<th class="slx-smallcol">{{lang_delete}}</th>
		</tr>
		</thead>
		<tbody>
		{{#bootentryTable}}
		<tr>
			<td>
				{{entryid}}
			</td>
			<td>
				{{title}}
			</td>
			<td>
				{{hotkey}}
			</td>
			<td align="right">
				{{#refs}}
				<span class="badge">{{refs}}</span>
				{{/refs}}
			</td>
			<td align="center">
				<a href="?do=serversetup&amp;show=editbootentry&amp;id={{entryid}}" class="btn btn-xs btn-default">
					<span class="glyphicon glyphicon-{{#allowEdit}}edit{{/allowEdit}}{{^allowEdit}}eye-open{{/allowEdit}}"></span>
				</a>
			</td>
			{{#allowEdit}}
			<td align="center">
				<a href="?do=serversetup&amp;show=editbootentry&amp;id={{entryid}}&copy=true" class="btn btn-xs btn-default">
					<span class="glyphicon glyphicon-duplicate"></span>
				</a>
			</td>
			{{/allowEdit}}
			<td align="center">
				{{#allowEdit}}
					{{^builtin}}
						<button type="submit" name="deleteid" value="{{entryid}}" class="btn btn-xs btn-danger"
								  data-confirm="#confirm-delete" data-title="{{title}}">
							<span class="glyphicon glyphicon-trash"></span>
						</button>
					{{/builtin}}
				{{/allowEdit}}
			</td>
		</tr>
		{{/bootentryTable}}
		</tbody>
	</table>
</form>
<div class="hidden" id="confirm-delete">{{lang_bootentryDeleteConfirm}}</div>
<div class="pull-right">
	{{#allowEdit}}
		<a href="?do=serversetup&amp;show=editbootentry" class="btn btn-success">
			<span class="glyphicon glyphicon-plus"></span>
			{{lang_addBootentry}}
		</a>
	{{/allowEdit}}
</div>

<div class="clearfix"></div>