blob: 11ebd77ad1d2ea27c1ab5326271222a5d91d0db6 (
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
|
<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>
<div class="row">
<div class="col-md-4"></div>
<div class="col-md-8">
<button class="btn btn-lg btn-primary btn-block save-btn" type="submit">
<span class="glyphicon glyphicon-floppy-disk"></span>
{{lang_save}}
</button>
</div>
</div>
|