mirror of
https://gitlab.ub.uni-bielefeld.de/sfb1288inf/nopaque.git
synced 2024-11-15 01:05:42 +00:00
67 lines
1.4 KiB
Django/Jinja
67 lines
1.4 KiB
Django/Jinja
{% extends "base.html.j2" %}
|
|
|
|
{% block page_content %}
|
|
<style media="screen">
|
|
.sort {
|
|
cursor: pointer;
|
|
}
|
|
.sort:after {
|
|
width: 0;
|
|
height: 0;
|
|
border-left: 5px solid transparent;
|
|
border-right: 5px solid transparent;
|
|
border-bottom: 5px solid transparent;
|
|
content:"";
|
|
position: relative;
|
|
top:-10px;
|
|
right:-5px;
|
|
}
|
|
.sort.asc:after {
|
|
width: 0;
|
|
height: 0;
|
|
border-left: 5px solid transparent;
|
|
border-right: 5px solid transparent;
|
|
border-top: 5px solid #000000;
|
|
content:"";
|
|
position: relative;
|
|
top:13px;
|
|
right:-5px;
|
|
}
|
|
.sort.desc:after {
|
|
width: 0;
|
|
height: 0;
|
|
border-left: 5px solid transparent;
|
|
border-right: 5px solid transparent;
|
|
border-bottom: 5px solid #000000;
|
|
content:"";
|
|
position: relative;
|
|
top:-10px;
|
|
right:-5px;
|
|
}
|
|
</style>
|
|
<div class="col s12">
|
|
<div class="card">
|
|
<div class="card-content">
|
|
<span class="card-title">User list</span>
|
|
<div id="users">
|
|
<div class="input-field">
|
|
<i class="material-icons prefix">search</i>
|
|
<input id="search-corpus" class="search" type="text"></input>
|
|
<label for="search-corpus">Search users</label>
|
|
</div>
|
|
{{ table }}
|
|
<ul class="pagination"></ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<script type="text/javascript">
|
|
var options = {
|
|
valueNames: ['username', 'email', 'role', 'confirmed', 'id'],
|
|
page: 10,
|
|
pagination: true
|
|
};
|
|
var userList = new List('users', options);
|
|
</script>
|
|
{% endblock %}
|