forked from openiap/opencore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDebug.html
More file actions
29 lines (28 loc) · 1.38 KB
/
Copy pathDebug.html
File metadata and controls
29 lines (28 loc) · 1.38 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
<button ng-click="ctrl.DumpClients()" ng-disabled="ctrl.loading==true" type="button" class="btn btn-success ">Dump
Clients</button>
<button ng-click="ctrl.DumpRabbitmq()" ng-disabled="ctrl.loading==true" type="button" class="btn btn-success ">Dump
Rabbitmq</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('_type')"><b translate lib="web">type</b></th>
<th scope="col" ng-click="ctrl.ToggleOrder('consumers')"><b translate lib="web">consumers</b></th>
<th scope="col" ng-click="ctrl.ToggleOrder('queuename')"><b translate lib="web">queuename</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><span translate lib="web">{{model.type || model._type}}</span></td>
<td>{{model.consumers}}</td>
<td>{{model.queuename}}</td>
<td>
<timesince ng-model="model._modified" />
</td>
</tr>
</tbody>
</table>