nopaque/app/templates/admin/users.html.j2

47 lines
1.3 KiB
Plaintext
Raw Normal View History

{% extends "base.html.j2" %}
{% from "admin/_breadcrumbs.html.j2" import breadcrumbs with context %}
2020-10-23 08:17:14 +00:00
{% block page_content %}
<div class="container">
<div class="row">
<div class="col s12">
2020-10-23 08:26:36 +00:00
<h1 id="title">{{ title }}</h1>
2020-10-23 08:17:14 +00:00
</div>
<div class="col s12 nopaque-ressource-list no-autoinit" data-ressource-type="User" id="users">
2020-10-23 08:17:14 +00:00
<div class="card">
<div class="card-content">
2020-10-23 08:17:14 +00:00
<div class="input-field">
<i class="material-icons prefix">search</i>
<input id="search-user" class="search" type="text"></input>
<label for="search-user">Search user</label>
</div>
<table class="highlight">
2020-10-23 08:17:14 +00:00
<thead>
<tr>
<th>Id</th>
<th>Username</th>
<th>Email</th>
<th>Last seen</th>
<th>Role</th>
<th></th>
2020-10-23 08:17:14 +00:00
</tr>
</thead>
<tbody class="list"></tbody>
2020-10-23 08:17:14 +00:00
</table>
<ul class="pagination"></ul>
2020-10-23 08:17:14 +00:00
</div>
</div>
</div>
</div>
</div>
2021-12-01 13:15:20 +00:00
{% endblock page_content %}
2020-10-23 08:17:14 +00:00
{% block scripts %}
{{ super() }}
<script>
let userList = new UserList(document.querySelector('#users'));
2021-11-30 15:22:16 +00:00
userList.init({{ dict_users|tojson }});
2020-10-23 08:17:14 +00:00
</script>
{% endblock scripts %}