2021-07-21 19:22:29 +00:00
|
|
|
{{define "title"}}Directory |{{end}}
|
|
|
|
|
|
|
|
{{define "body"}}
|
|
|
|
<div class="d-flex">
|
|
|
|
<h4>Directory</h4>
|
|
|
|
<a class="ml-auto btn btn-info" href="/">Menu principal</a>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<div class="d-flex">
|
|
|
|
<div class="d-flex mx-auto">
|
|
|
|
<p class="">Name:</p>
|
|
|
|
<form class="px-2" style="width: fit-content;">
|
|
|
|
<input id="search" type="text" onkeyup="searchDirectory()" size="20">
|
|
|
|
</form>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<table class="table mt-4">
|
|
|
|
<thead>
|
2021-07-29 22:04:17 +00:00
|
|
|
<th scope="col">Profil image</th>
|
2021-07-21 19:22:29 +00:00
|
|
|
<th scope="col">Identifiant</th>
|
|
|
|
<th scope="col">Nom complet</th>
|
|
|
|
<th scope="col">Email</th>
|
2021-07-26 21:01:48 +00:00
|
|
|
<th scope="col">Description</th>
|
2021-07-21 19:22:29 +00:00
|
|
|
</thead>
|
|
|
|
<tbody id="users">
|
|
|
|
|
|
|
|
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<script src="/static/javascript/search.js"></script>
|
|
|
|
|
|
|
|
{{end}}
|