2016-03-22 01:06:25 +01:00
|
|
|
{% extends "_base.html" %}
|
|
|
|
{% block content %}
|
2020-09-10 10:50:47 +02:00
|
|
|
<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>
|
2016-04-16 21:03:11 +02:00
|
|
|
<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>
|
2016-04-16 21:03:11 +02:00
|
|
|
</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 %}
|
2016-04-16 21:03:11 +02:00
|
|
|
<tr>
|
2019-02-11 15:53:17 +01:00
|
|
|
<td>{{ cn }}</td>
|
2019-05-16 16:13:05 +02:00
|
|
|
<td>{{ uin }}</td>
|
2016-04-16 21:03:11 +02:00
|
|
|
<td>{{ dn }}</td>
|
|
|
|
</tr>
|
2016-03-22 01:06:25 +01:00
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
{% endblock %}
|