summaryrefslogtreecommitdiffstats
path: root/modules-available/adduser/templates/user-permissions.html
blob: ce51630f134facea153d23ca1ed4b7b12aa6e9cf (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
<h3>{{lang_assignRoles}}</h3>

<table class="table table-condensed table-hover">
	<thead>
	<tr>
		<th data-sort="string">{{lang_role}}</th>
		<th class="text-center slx-smallcol"></th>
	</tr>
	</thead>

	<tbody>
	{{#roles}}
		<tr>
			<td class="rolename">{{rolename}}</td>
			<td class="text-center">
				<div class="checkbox">
					<input type="checkbox" name="roles[]" value="{{roleid}}" {{#hasRole}}checked{{/hasRole}}>
					<label></label>
				</div>
			</td>
		</tr>
	{{/roles}}
	</tbody>
</table>