forked from openiap/opencore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSockets.html
More file actions
34 lines (33 loc) · 1.52 KB
/
Copy pathSockets.html
File metadata and controls
34 lines (33 loc) · 1.52 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
<a ng-disabled="ctrl.loading==true" type="button" class="btn btn-success" ng-href="#/Queues">Queues</a>
<button ng-click="ctrl.DumpClients()" ng-disabled="ctrl.loading==true" type="button" class="btn btn-success ">Dump
Clients</button>
<button ng-click="ctrl.loadData()" ng-disabled="ctrl.loading==true" type="button"
class="btn btn-success ">Reload</button>
<table id=" table1" class="table table-striped table-hover table-sm" when-scrolled="ctrl.more()" style="width: 100%;">
<thead class="thead-dark">
<tr>
<th scope="col" ng-click="ctrl.ToggleOrder('name')"><b translate lib="web">name</b></th>
<th scope="col" ng-click="ctrl.ToggleOrder('clientagent')"><b translate lib="web">clientagent</b></th>
<th scope="col" ng-click="ctrl.ToggleOrder('queues')"><b translate lib="web">queues</b></th>
<th scope="col" ng-click="ctrl.ToggleOrder('remoteip')"><b translate lib="web">remoteip</b></th>
<th scope="col" ng-click="ctrl.ToggleOrder('lastheartbeat')"><b translate lib="web">lastheartbeat</b></th>
<th scope="col" ng-click="ctrl.ToggleOrder('_modified')"><b translate lib="web">updated</b></th>
</tr>
</thead>
<tbody>
<tr ng-repeat="model in ctrl.models">
<td>{{model.name}}</td>
<td>{{model.clientagent}}</td>
<td>{{model.queuescount}} </td>
<td>{{model.remoteip}} </td>
<td>
<timesince ng-model="model.lastheartbeat" />
</td>
<td>
<timesince ng-model="model._modified" />
</td>
</tr>
<tr>
</tr>
</tbody>
</table>