mirror of
https://github.com/moepman/bk-dss
synced 2024-12-22 06:54:26 +01:00
Rename function list to list_users.
The function list shadowed the built-in type list leading to weird TypeError exceptions in the user creation. While at it list the users cn before the dn to improve readability.
This commit is contained in:
parent
5aabd7ed6d
commit
46e560cef9
6
index.py
6
index.py
@ -91,7 +91,7 @@ def create():
|
||||
user_dn = app.config.get('USER_DN').format(**d)
|
||||
attrs = {}
|
||||
for k,v in app.config.get('USER_ATTRS').iteritems():
|
||||
if type(v) == str:
|
||||
if isinstance(v, str):
|
||||
attrs[k] = v.format(**d)
|
||||
elif isinstance(v, list):
|
||||
attrs[k] = []
|
||||
@ -142,13 +142,13 @@ def edit():
|
||||
|
||||
|
||||
@app.route('/list')
|
||||
def list():
|
||||
def list_users():
|
||||
if not isLoggedin():
|
||||
return render_template('error.html', message="You are not logged in. Please log in first.", nav=buildNav())
|
||||
|
||||
l = ldap.initialize(app.config.get('LDAP_URI', 'ldaps://127.0.0.1'))
|
||||
l.simple_bind_s(rdb.hget(session['uuid'], 'user'), rdb.hget(session['uuid'], 'pswd'))
|
||||
sr = l.search_s(app.config.get('LDAP_BASE'), ldap.SCOPE_SUBTREE, '(objectClass=posixAccount)', [''])
|
||||
sr = l.search_s(app.config.get('LDAP_BASE'), ldap.SCOPE_SUBTREE, '(objectClass=posixAccount)', ['cn'])
|
||||
return render_template('list.html', users=sr, nav=buildNav())
|
||||
|
||||
|
||||
|
@ -5,11 +5,17 @@
|
||||
</div>
|
||||
<table class="table table-bordered table-striped">
|
||||
<thead>
|
||||
<tr><td>DN</td></tr>
|
||||
<tr>
|
||||
<td>CN</td>
|
||||
<td>DN</td>
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody>
|
||||
{% for dn, _ in users %}
|
||||
<tr><td>{{ dn }}</td></tr>
|
||||
{% for dn, attr in users %}
|
||||
<tr>
|
||||
<td>{{ attr['cn'][0] }}</td>
|
||||
<td>{{ dn }}</td>
|
||||
</tr>
|
||||
{% endfor %}
|
||||
</tbody>
|
||||
</table>
|
||||
|
Loading…
Reference in New Issue
Block a user