forked from openiap/opencore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDeleted.html
More file actions
53 lines (50 loc) · 1.99 KB
/
Copy pathDeleted.html
File metadata and controls
53 lines (50 loc) · 1.99 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<div class="row">
<h1 translate lib="web">deleted entities</h1>
<p class="col-md-5 lead"></p>
</div>
<div class="row">
<div class="col-sm">
<div className="btn-group-justified">
<div class="btn-group" role="group">
<select ng-model="ctrl.collection" ng-options="item.name as item.name for item in ctrl.collections"
ng-change="ctrl.SelectCollection()">
</select>
</div>
</div>
</div>
<div class="col-sm">
</div>
<div class="col-sm text-right">
<em class="fas fa-cog fa-spin" ng-show="ctrl.loading==true"></em>
</div>
</div>
<div ng-show="ctrl.errormessage != ''"" class=" alert alert-danger" role="alert">{{ctrl.errormessage}}</div>
<table id=" table1" class="table table-striped table-hover table-sm" when-scrolled="ctrl.more()" style="width: 100%;">
<caption></caption>
<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('_createdby')"><b translate lib="web">createdby</b></th>
<th scope="col" ng-click="ctrl.ToggleOrder('_created')"><b translate lib="web">created</b></th>
<th scope="col" ng-click="ctrl.ToggleOrder('_modified')"><b translate lib="web">updated</b></th>
<th></th>
</tr>
</thead>
<tbody>
<tr ng-repeat="model in ctrl.models">
<td><a style="color: inherit; text-decoration: inherit;" ng-href="#/History/{{ctrl.collection}}/{{model._id}}">{{model.name}}</a></td>
<td><span translate lib="web">{{model.type || model._type}}</span></td>
<td>{{model._createdby}}</td>
<td>
<timesince ng-model="model._created" />
</td>
<td>
<timesince ng-model="model._modified" />
</td>
<td>
<a ng-href="#/History/{{ctrl.collection}}/{{model.id}}" class="btn"><em class="fas fa-search"></em></a>
</td>
</tr>
</tbody>
</table>