This repository has been archived on 2019-10-12. You can view files and clone it, but cannot push or open issues or pull requests.
2019-04-10 02:15:45 +02:00

24 lines
831 B
Django/Jinja

{% extends 'realm/realm_detailed.jinja2' %}
{% block detail_content %}
<h2>Nutzer</h2>
<a href="{{ url('realm-multiple-user-delete', args=[realm.id]) }}" class="text-right"> Mehrere Nutzer Löschen</a>
<table class="table">
<thead>
<tr>
<th scope="col">Name</th>
<th scope="col">Ldap Domain</th>
</tr>
</thead>
<tbody>
{% for user in realm_user %}
<tr>
<td>{{ user.username }}</td>
<td>
<a href="{{ url('realm-user-detail', args=[realm.id, user.dn]) }}">{{ user.dn }}</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
<a href="{{ url('realm-user-add', args=[realm.id]) }}" class="btn btn-primary">Nutzer hinzufügen</a>
{% endblock %}