This commit is contained in:
Götz 2019-04-11 03:08:24 +02:00
parent d1906b148d
commit 9af4a90ae9

View File

@ -7,15 +7,15 @@
<tr> <tr>
<th scope="col">Name</th> <th scope="col">Name</th>
<th scope="col">Ldap Domain</th> <th scope="col">Ldap Domain</th>
<th scope="col">Mitgliederanzahl</th>
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
{% for group in realm_groups %} {% for group in realm_groups %}
<tr> <tr>
<td>{{ group.name }}</td> <td><a href="{{ url('realm-group-detail', args=[realm.id, group.dn]) }}">{{ group.name }}</a></td>
<td> <td>{{ group.dn }}</td>
<a href="{{ url('realm-group-detail', args=[realm.id, group.dn]) }}">{{ group.dn }}</a> <td>{{ group.members|length }}</td>
</td>
</tr> </tr>
{% endfor %} {% endfor %}
</tbody> </tbody>