bk-dss/templates/list.html

25 lines
618 B
HTML
Raw Permalink Normal View History

2016-03-22 01:06:25 +01:00
{% extends "_base.html" %}
{% block content %}
<div class="pb-2 mt-4 mb-3 border-bottom">
2019-02-11 15:53:17 +01:00
<h1>List Accounts</h1>
2016-03-22 01:06:25 +01:00
</div>
<table class="table table-bordered table-striped">
<thead>
<tr>
2019-02-11 15:53:17 +01:00
<td>common name</td>
2019-05-16 16:13:05 +02:00
<td>UID number</td>
2019-02-11 15:53:17 +01:00
<td>distinguished name</td>
</tr>
2016-03-22 01:06:25 +01:00
</thead>
<tbody>
2019-05-16 16:13:05 +02:00
{% for cn, uin, dn in accounts %}
<tr>
2019-02-11 15:53:17 +01:00
<td>{{ cn }}</td>
2019-05-16 16:13:05 +02:00
<td>{{ uin }}</td>
<td>{{ dn }}</td>
</tr>
2016-03-22 01:06:25 +01:00
{% endfor %}
</tbody>
</table>
{% endblock %}