summaryrefslogtreecommitdiffstats
path: root/modules-available/serversetup-bwlp/templates/menu-list.html
blob: a862cff25ebcaac21d2e31909fc34a353246aad3 (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
<h2>{{lang_listOfMenus}}</h2>

<table class="table">
	<thead>
	<tr>
		<th>{{lang_menuTitle}}</th>
		<th class="slx-smallcol">{{lang_locationCount}}</th>
		<th class="slx-smallcol">{{lang_isDefault}}</th>
		<th class="slx-smallcol">{{lang_edit}}</th>
	</tr>
	</thead>
	<tbody>
	{{#table}}
		<tr>
			<td>
				{{title}}
			</td>
			<td class="text-right">
				{{locationCount}}
			</td>
			<td>
				{{#isdefault}}
					<span class="glyphicon glyphicon-ok"></span>
				{{/isdefault}}
			</td>
			<td>
				{{#allowEdit}}
					<a href="?do=serversetup&amp;show=editmenu&amp;id={{menuid}}" class="btn btn-xs btn-default">
						<span class="glyphicon glyphicon-edit"></span>
					</a>
				{{/allowEdit}}
			</td>
		</tr>
	{{/table}}
	</tbody>
</table>