2020-02-09 21:06:33 +00:00
|
|
|
{{define "title"}}Liste des groupes |{{end}}
|
|
|
|
|
|
|
|
{{define "body"}}
|
|
|
|
|
|
|
|
<div class="d-flex">
|
|
|
|
<h4>Liste des groupes</h4>
|
2020-02-10 08:44:18 +00:00
|
|
|
<a class="ml-auto btn btn-success" href="/admin/create/group/{{.GroupBaseDN}}">Nouveau groupe</a>
|
|
|
|
<a class="ml-4 btn btn-info" href="/">Menu principal</a>
|
2020-02-09 21:06:33 +00:00
|
|
|
</div>
|
|
|
|
|
2023-02-08 12:11:43 +00:00
|
|
|
<div class="alert alert-warning mt-4">
|
|
|
|
Les groupes servent uniquement à contrôler l'accès à différentes fonctionalités de Deuxfleurs.
|
|
|
|
Ce ne sont pas des <a href="/admin/mailing">mailing lists</a>.
|
|
|
|
</div>
|
|
|
|
|
2020-02-09 21:06:33 +00:00
|
|
|
<table class="table mt-4">
|
|
|
|
<thead>
|
|
|
|
<th scope="col">Identifiant</th>
|
|
|
|
<th scope="col">Nom complet</th>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
{{with $root := .}}
|
|
|
|
{{range $group := $root.Groups}}
|
|
|
|
<tr>
|
|
|
|
<td>
|
|
|
|
<a href="/admin/ldap/{{$group.DN}}">
|
|
|
|
{{$group.GetAttributeValue $root.GroupNameAttr}}
|
|
|
|
</a>
|
|
|
|
</td>
|
2020-02-12 14:54:17 +00:00
|
|
|
<td>{{$group.GetAttributeValue "description"}}</td>
|
2020-02-09 21:06:33 +00:00
|
|
|
</tr>
|
|
|
|
{{end}}
|
|
|
|
{{end}}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
|
|
{{end}}
|