summaryrefslogtreecommitdiffstats
path: root/modules-available/permissionmanager/templates/locationstable.html
blob: 35058387ad638a6efedf08b466edd00f3f2d4b06 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<table id="locationsTable" class="table table-condensed table-hover dataTable">
	<thead>
		<tr>
			<th>{{lang_locations}}</th>
			<th class="slx-smallcol">{{lang_roles}}</th>
		</tr>
	</thead>

	<tbody>
	{{#location}}
		<tr class="{{#roles}}roleid-{{roleid}} {{/roles}}">
			<td>{{locationpad}} {{locationname}}</td>
			<td class="slx-smallcol">
				{{#roles}}
				<a href="?do=permissionmanager&show=roleEditor&cancel=locations&roleid={{roleid}}" class="label label-default customSpanMargin">{{rolename}}</a>
				{{/roles}}
			</td>
		</tr>
	{{/location}}
	</tbody>
</table>