aboutsummaryrefslogtreecommitdiff
path: root/templates/admin_users.html
blob: 01d96d28f7804b3635f3728fada846345eedb74f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
{{define "title"}}Liste des utilisateurs |{{end}}

{{define "body"}}

<div class="d-flex">
  <h4>Liste des utilisateurs</h4>
  <a class="ml-auto btn btn-info" href="/">Retour</a>
</div>

<table class="table mt-4">
  <thead>
    <th scope="col">Identifiant</th>
    <th scope="col">Nom complet</th>
    <th scope="col">Email</th>
  </thead>
  <tbody>
    {{with $root := .}}
      {{range $user := $root.Users}}
        <tr>
          <td>
            <a href="/admin/ldap/{{$user.DN}}">
              {{$user.GetAttributeValue $root.UserNameAttr}}
            </a>
          </td>
          <td>{{$user.GetAttributeValue "displayname"}}</td>
          <td>{{$user.GetAttributeValue "mail"}}</td>
        </tr>
      {{end}}
    {{end}}
  </tbody>
</table>

{{end}}