smaller rework while getting an overview

This commit is contained in:
Patrick Jentsch
2020-11-04 14:54:27 +01:00
parent 9c9790be89
commit ab21768311
4 changed files with 20 additions and 30 deletions

View File

@ -19,16 +19,14 @@
<table class="highlight responsive-table">
<thead>
<tr>
<th class="sort" data-sort="id">Id</th>
<th class="sort" data-sort="username">Username</th>
<th class="sort" data-sort="email">Email</th>
<th class="sort" data-sort="role_id">Role</th>
<th class="sort" data-sort="confirmed">Confirmed Status</th>
<th class="sort" data-sort="id">Id</th>
<th>{# Actions #}</th>
</tr>
</thead>
<tbody class="list">
</tbody>
<tbody class="list"></tbody>
</table>
<ul class="pagination paginationBottom"></ul>
</div>
@ -43,6 +41,6 @@
<script type="module">
import {RessourceList} from '{{ url_for('static', filename='js/nopaque.lists.js') }}';
let userList = new RessourceList('users', null, "User", RessourceList.options.extended);
userList._add({{ users|tojson}});
userList._add({{ users|tojson }});
</script>
{% endblock scripts %}