mirror of
https://github.com/moepman/bk-dss
synced 2024-11-16 20:29:12 +01:00
23 lines
533 B
HTML
23 lines
533 B
HTML
{% extends "_base.html" %}
|
|
{% block content %}
|
|
<div class="page-header">
|
|
<h1>List Accounts</h1>
|
|
</div>
|
|
<table class="table table-bordered table-striped">
|
|
<thead>
|
|
<tr>
|
|
<td>common name</td>
|
|
<td>distinguished name</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for cn, dn in accounts %}
|
|
<tr>
|
|
<td>{{ cn }}</td>
|
|
<td>{{ dn }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|