forked from openiap/opencore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.html
More file actions
42 lines (39 loc) · 1.34 KB
/
Copy pathMain.html
File metadata and controls
42 lines (39 loc) · 1.34 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
<div class="row">
<h1 translate lib="web">sitename</h1>
<p class="col-md-5 lead"></p>
</div>
</div>
<div class="text-right">
<input type="checkbox" id="checkbox-1" ng-model="ctrl.showcompleted" ng-change="ctrl.Search()">
<label for="checkbox-1"><span translate lib="web">completed</span></label>
</div>
<div ng-show="ctrl.errormessage != ''"" class=" alert alert-danger" role="alert">{{ctrl.errormessage}}</div>
<table id="table1" class="table table-striped" when-scrolled="ctrl.more()" style="width: 100%;">
<thead class="thead-dark">
<tr>
<th><b translate lib="web">name</b></th>
<th><b translate lib="web">state</b></th>
<th><b translate lib="web">created</b></th>
<th><b translate lib="web">updated</b></th>
<th><b translate lib="web">createdby</b></th>
<th></th>
</tr>
</thead>
<tbody>
<tr ng-repeat="model in ctrl.models">
<td>{{model.name}}</td>
<td>{{model.state}}</td>
<td>
<timesince ng-model="model._created" />
</td>
<td>
<timesince ng-model="model._modified" />
</td>
<td>{{model._createdby}}</td>
<td class="btn-cell">
<a ng-href="#/Form/{{model.workflow}}/{{model._id}}" ng-hide="ctrl.loading==true || model.form == 'none'"><em
class="fas fa-book-open"></em></a>
</td>
</tr>
</tbody>
</table>