mirror of
https://github.com/kakwa/ldapcherry
synced 2024-11-04 16:48:54 +01:00
64 lines
2.3 KiB
Cheetah
64 lines
2.3 KiB
Cheetah
<%inherit file="navbar.tmpl"/>
|
|
<%block name="core">
|
|
<div class="row clearfix top-buffer bottom-buffer">
|
|
<div class="col-md-2 column">
|
|
</div>
|
|
<div class="col-md-12 column">
|
|
<div class="well well-sm">
|
|
<form method='POST' action='/modify' role="form" class="form-signin" data-toggle="validator">
|
|
<h2 class="h3">Modify user's attributes:</h2>
|
|
${form}
|
|
<h2 class="h3">Enable/Disable user's roles:</h2>
|
|
${roles}
|
|
% if len(standalone_groups) != 0:
|
|
<h2 class="h3">Delete user's individual groups:</h2>
|
|
<table id="RecordTable" class="table table-hover table-condensed tablesorter">
|
|
<thead>
|
|
<tr>
|
|
<th class="sorter-false">
|
|
Backend
|
|
</th>
|
|
<th class="sorter-false">
|
|
Group
|
|
</th>
|
|
<th class="sorter-false">
|
|
Enable/Disable
|
|
</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
% for backend in standalone_groups:
|
|
% for group in standalone_groups[backend]:
|
|
<tr>
|
|
<td>
|
|
${backend}
|
|
</td>
|
|
<td>
|
|
${group}
|
|
</td>
|
|
<td>
|
|
<input data-on-color="success" data-off-color="danger" data-on-text="Enabled"
|
|
data-off-text="Disabled" data-handle-width="75" type="checkbox"
|
|
name="${group}" data-size="mini" id="${group}" checked>
|
|
<script>$("[name='${group}']").bootstrapSwitch();</script>
|
|
</td>
|
|
</tr>
|
|
% endfor
|
|
% endfor
|
|
</tbody>
|
|
</table>
|
|
% endif
|
|
<div class="form-group">
|
|
<div class="input-group">
|
|
<button class="btn btn-default blue" type="submit">
|
|
<span class="glyphicon glyphicon-cog"> Modify User</button>
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-2 column">
|
|
</div>
|
|
</div>
|
|
</%block>
|