guichet/templates/admin_activate.html

39 lines
1.1 KiB
HTML
Raw Normal View History

2023-07-21 04:51:56 +00:00
{{define "title"}}Activer des utilisateurs |{{end}}
2023-07-24 08:36:34 +00:00
2023-07-23 15:18:29 +00:00
{{define "admenu"}}
{{end}}
2023-07-24 08:36:34 +00:00
2023-07-21 04:58:43 +00:00
{{define "body"}}
2023-07-21 04:51:56 +00:00
<table class="table mt-4">
<thead>
2023-07-21 05:38:12 +00:00
<th scope="col"></th>
2023-07-21 05:33:43 +00:00
<th scope="col">Login</th>
<th scope="col">Email</th>
<th scope="col">Nom d'ffichage</th>
<th scope="col">Prénom</th>
<th scope="col">Nom de famille</th>
<th scope="col">description</th>
2023-07-21 04:51:56 +00:00
</thead>
<tbody>
{{with $root := .}}
{{range $user := $root.Users}}
<tr>
<td>
2023-07-21 05:33:43 +00:00
<a href="/admin/activate/{{ $user.GetAttributeValue "cn" }}">
2023-07-21 05:38:12 +00:00
Activer
2023-07-21 04:51:56 +00:00
</a>
</td>
2023-07-21 05:38:12 +00:00
<td>
2023-07-21 14:40:28 +00:00
<a href="/admin/ldap/{{$user.DN}}">{{$user.GetAttributeValue "cn"}}</a>
2023-07-21 05:38:12 +00:00
</td>
2023-07-21 04:51:56 +00:00
<td>{{$user.GetAttributeValue "mail"}}</td>
2023-07-21 05:00:35 +00:00
<td>{{$user.GetAttributeValue "displayName"}}</td>
2023-07-21 05:33:43 +00:00
<td>{{$user.GetAttributeValue "givenName"}}</td>
2023-07-21 04:51:56 +00:00
<td>{{$user.GetAttributeValue "sn"}}</td>
<td>{{$user.GetAttributeValue "description"}}</td>
</tr>
{{end}}
{{end}}
</tbody>
2023-07-21 04:58:43 +00:00
</table>
{{end}}