ldapcherry/resources/templates/modify.tmpl

72 lines
2.6 KiB
Cheetah
Raw Normal View History

2015-06-27 22:35:34 +02:00
## -*- coding: utf-8 -*-
2015-06-18 23:43:58 +02:00
<%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" id="form">
2015-06-24 00:58:32 +02:00
<fieldset>
<legend>Modify user's attributes:</legend>
${form | n}
2015-06-24 00:58:32 +02:00
</fieldset>
<fieldset>
<legend>Enable/Disable user's roles:</legend>
${roles | n}
2015-06-24 00:58:32 +02:00
</fieldset>
% if len(standalone_groups) != 0:
2015-06-24 00:58:32 +02:00
<fieldset>
<legend>Delete user's individual groups:</legend>
<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>
${backends_display_names[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.${backend}.${group}" data-size="mini" id="group.${backend}.${group}" checked>
<script>$("[name='group.${backend}.${group}']").bootstrapSwitch();</script>
</td>
</tr>
% endfor
% endfor
</tbody>
</table>
2015-06-24 00:58:32 +02:00
</fieldset>
% endif
2015-06-18 23:43:58 +02:00
<div class="form-group">
<div class="input-group">
<button class="btn btn-default blue" type="submit">
<span class="glyphicon glyphicon-cog"></span> Modify User</button>
2015-06-18 23:43:58 +02:00
</div>
</div>
</form>
<script type="text/javascript" src="/static/js/ppolicy.js"></script>
2015-06-18 23:43:58 +02:00
</div>
</div>
<div class="col-md-2 column">
</div>
</div>
</%block>