archon/views/index.twig

43 lines
932 B
Twig
Raw Permalink Normal View History

{% extends 'layout.twig' %}
{% block content %}
<header class="row">
<div class="columns twelve u-text-center">
<h1>Archon LDAP Manager</h1>
</div>
</header>
<section id="connectionInfo" class="row">
<div class="columns twelve u-text-center">
<p>Connected to: <span id="ldapHost"></span></p>
</div>
</section>
<section id="userActions" class="row">
<div class="columns twelve">
<p><a href="user/create.html">Create new user</a></p>
</div>
</section>
<section id="ldapObjectTable" class="row">
<table>
<thead>
<tr>
<th>User ID</th>
<th>Display Name</th>
<th>Email Address</th>
</tr>
</thead>
2022-05-25 00:34:10 -04:00
<tbody id="ldapUserList">
{% for user in users %}
<tr>
<td>{{ user.uid }}</td>
<td>{{ user.displayName }}</td>
<td>{{ user.mail }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</section>
{% endblock %}