aboutsummaryrefslogtreecommitdiff
path: root/templates/admin_users.html
diff options
context:
space:
mode:
Diffstat (limited to 'templates/admin_users.html')
-rw-r--r--templates/admin_users.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/templates/admin_users.html b/templates/admin_users.html
new file mode 100644
index 0000000..8ca80e2
--- /dev/null
+++ b/templates/admin_users.html
@@ -0,0 +1,27 @@
+{{define "title"}}Liste des utilisateurs |{{end}}
+
+{{define "body"}}
+<div class="d-flex">
+ <a class="ml-auto btn btn-info" href="/">Retour</a>
+</div>
+
+<table class="table mt-4">
+ <thead>
+ <th scope="col">{{ .UserNameAttr }}</th>
+ <th scope="col">Nom complet</th>
+ <th scope="col">Email</th>
+ </thead>
+ <tbody>
+ {{with $root := .}}
+ {{range $user := $root.Users}}
+ <tr>
+ <td>{{$user.GetAttributeValue $root.UserNameAttr}}</td>
+ <td>{{$user.GetAttributeValue "displayname"}}</td>
+ <td>{{$user.GetAttributeValue "mail"}}</td>
+ </tr>
+ {{end}}
+ {{end}}
+ </tbody>
+</table>
+
+{{end}}