1
|
<div>
|
2
|
<div class="border_container" style="padding: 8px; border-bottom: 1px solid #ddd;">
|
3
|
|
4
|
<button class="btn btn-success btn-sm pull-left shadow" onclick="users.grid.newItem()" id="usersNewButton" style="display:none">New user…</button>
|
5
|
|
6
|
<div class="pull-right" style="margin-left:10px;">
|
7
|
<form action="#users" method="get" onsubmit="document.getElementById('users_search_query').blur(); return false;">
|
8
|
<div id="users_search_query" class="searchQueryInput"
|
9
|
data-dojo-type="stabile.ClearTextBox"
|
10
|
data-dojo-props="placeHolder:'search by name', intermediateChanges:false">
|
11
|
</div>
|
12
|
</form>
|
13
|
</div>
|
14
|
|
15
|
<div class="pull-right">
|
16
|
<span style="vertical-align: sub; margin-left:10px">Show:</span>
|
17
|
<select id="users_status_filter_select" dojoType="dijit.form.Select">
|
18
|
<option value="all" selected="selected">All</option>
|
19
|
<option value="validated">Up</option>
|
20
|
<option value="not validated">NAT</option>
|
21
|
<option value="disabled">Down</option>
|
22
|
<option value="enabled">All</option>
|
23
|
</select>
|
24
|
</div>
|
25
|
|
26
|
<button title="Click to sync your users with origo.io." type="button" class="btn btn-info btn-xs shadow pull-right" onclick="users.syncUsers();" id="syncusers" style="display:none; margin-top: 5px; margin-right:8px;">Sync users</button>
|
27
|
|
28
|
</div>
|
29
|
|
30
|
<!-- end top button container -->
|
31
|
|
32
|
<div id="users-grid" class="grid-div"></div>
|
33
|
|
34
|
<!-- end grid container -->
|
35
|
|
36
|
<div class="border_container_south">
|
37
|
<a href="#users" onClick="window['users'].grid.refresh();" title="refresh" class="pull-right float btn"><img src="/stabile/static/img/ic_refresh_white_24dp_1x.png"></a>
|
38
|
</div>
|
39
|
</div>
|
40
|
</div>
|