summaryrefslogtreecommitdiffstats
path: root/management-interface/views/users.htm
diff options
context:
space:
mode:
Diffstat (limited to 'management-interface/views/users.htm')
-rw-r--r--management-interface/views/users.htm26
1 files changed, 15 insertions, 11 deletions
diff --git a/management-interface/views/users.htm b/management-interface/views/users.htm
index c461072..703f009 100644
--- a/management-interface/views/users.htm
+++ b/management-interface/views/users.htm
@@ -1,18 +1,17 @@
- <div class="container">
<div class="jumbotron">
<check if="{{ @loggedin }}">
<true>
<h2>List of all users</h2>
- <table class="table">
+ <table class="table table-striped table-responsive">
<thead>
<tr>
- <td>ID</td>
- <td>Username</td>
- <td>Organization</td>
- <td>First name</td>
- <td>Last name</td>
- <td>Email</td>
- <td>Last login</td>
+ <th>#</th>
+ <th>Username</th>
+ <th>Organization</th>
+ <th>First name</th>
+ <th>Last name</th>
+ <th>Email</th>
+ <th>Last login</th>
</tr>
</thead>
<tbody>
@@ -29,10 +28,15 @@
</repeat>
</tbody>
</table>
+ <form name="filter" role="form" class="form form-inline" method="get" action="{{ @hostname }}site/users">
+ <div class="form-group">
+ <input class="form-control" type="text" name="filter" placeholder="filter" value="{{ @oldFilter }}"/>
+ <button type="submit" class="btn btn-default">go</button>
+ </div>
+ </form>
</true>
<false>
- <p class="bg-danger">Please <a href="{{ $hostname }}login">login</a></p>
+ <p class="bg-danger">Please <a href="{{ $hostname }}site/login">login</a></p>
</false>
</check>
</div>
- </div> <!-- /container -->