summaryrefslogtreecommitdiffstats
path: root/modules-available/permissionmanager/templates/locationstable.html
blob: e170cd02b7c8f08662840da19cfb7e385e35b615 (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
<div class="row">
	<div class="col-md-12">
		<table id="locationsTable" class="table table-condensed table-hover">
			<thead>
				<tr>
					<th data-sort="string">{{lang_Locations}}</th>
					<th>{{lang_Roles}}</th>
				</tr>
			</thead>

			<tbody>
				{{#location}}
				<tr>
					<td>{{name}}</td>
					<td>
						{{#role}}
						<span class="label label-default customSpanMargin">{{.}}</span>
						{{/role}}
					</td>
				</tr>
			{{/location}}
			</tbody>
		</table>
	</div>
</div>