1
0
forked from moepman/bk-dss
bk-dss/templates/list.html

17 lines
399 B
HTML

{% extends "_base.html" %}
{% block content %}
<div class="page-header">
<h1>List users</h1>
</div>
<table class="table table-bordered table-striped">
<thead>
<tr><td>DN</td></tr>
</thead>
<tbody>
{% for dn, _ in users %}
<tr><td>{{ dn }}</td></tr>
{% endfor %}
</tbody>
</table>
{% endblock %}