2016-03-22 01:06:25 +01:00
|
|
|
{% extends "_base.html" %}
|
|
|
|
{% block content %}
|
|
|
|
<div class="page-header">
|
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>
|
|
|
|
<td>distinguished name</td>
|
2016-04-16 21:03:11 +02:00
|
|
|
</tr>
|
2016-03-22 01:06:25 +01:00
|
|
|
</thead>
|
|
|
|
<tbody>
|
2019-02-11 15:53:17 +01:00
|
|
|
{% for cn, dn in accounts %}
|
2016-04-16 21:03:11 +02:00
|
|
|
<tr>
|
2019-02-11 15:53:17 +01:00
|
|
|
<td>{{ cn }}</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 %}
|