summaryrefslogblamecommitdiffstats
path: root/modules-available/permissionmanager/templates/locationstable.html
blob: e170cd02b7c8f08662840da19cfb7e385e35b615 (plain) (tree)
1
2
3
4
5
6
7
8



                                                                                     



                                                                                      


                                









                                                                                                               



                                
<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>