1
0
mirror of https://github.com/moepman/bk-dss synced 2024-06-01 15:22:35 +02:00
bk-dss/templates/list.html

23 lines
533 B
HTML
Raw Normal View History

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>
<tr>
2019-02-11 15:53:17 +01:00
<td>common name</td>
<td>distinguished name</td>
</tr>
2016-03-22 01:06:25 +01:00
</thead>
<tbody>
2019-02-11 15:53:17 +01:00
{% for cn, dn in accounts %}
<tr>
2019-02-11 15:53:17 +01:00
<td>{{ cn }}</td>
<td>{{ dn }}</td>
</tr>
2016-03-22 01:06:25 +01:00
{% endfor %}
</tbody>
</table>
{% endblock %}