mirror of
https://github.com/moepman/bk-dss
synced 2024-10-31 23:07:05 +01:00
Markus Hauschild
933443f30e
adjust classes to look okay with bootstrap 4 replace glyphicons with inline svgs from bootstrap-icons
25 lines
618 B
HTML
25 lines
618 B
HTML
{% extends "_base.html" %}
|
|
{% block content %}
|
|
<div class="pb-2 mt-4 mb-3 border-bottom">
|
|
<h1>List Accounts</h1>
|
|
</div>
|
|
<table class="table table-bordered table-striped">
|
|
<thead>
|
|
<tr>
|
|
<td>common name</td>
|
|
<td>UID number</td>
|
|
<td>distinguished name</td>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
{% for cn, uin, dn in accounts %}
|
|
<tr>
|
|
<td>{{ cn }}</td>
|
|
<td>{{ uin }}</td>
|
|
<td>{{ dn }}</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|