1
0
mirror of https://github.com/moepman/bk-dss synced 2024-06-01 22:12:35 +02:00
bk-dss/templates/list.html

23 lines
515 B
HTML
Raw Normal View History

2016-03-22 01:06:25 +01:00
{% extends "_base.html" %}
{% block content %}
<div class="page-header">
<h1>List users</h1>
</div>
<table class="table table-bordered table-striped">
<thead>
<tr>
<td>CN</td>
<td>DN</td>
</tr>
2016-03-22 01:06:25 +01:00
</thead>
<tbody>
{% for dn, attr in users %}
<tr>
<td>{{ attr['cn'][0] }}</td>
<td>{{ dn }}</td>
</tr>
2016-03-22 01:06:25 +01:00
{% endfor %}
</tbody>
</table>
{% endblock %}