forked from openiap/opencore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathWorkflows.html
More file actions
34 lines (34 loc) · 1.3 KB
/
Copy pathWorkflows.html
File metadata and controls
34 lines (34 loc) · 1.3 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
<div class="row">
<h1 translate lib="web">workflows</h1>
<p class="col-md-5 lead"></p>
</div>
<div class="row">
<div class="col-sm">
Start an instance of one of these workflow
</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>
<div class="row">
<table id="table1" class="table table-striped" when-scrolled="ctrl.more()" style="width: 100%;">
<thead class="thead-dark">
<tr>
<th ng-click="ctrl.ToggleOrder('name')"><b translate lib="web">name</b></th>
<th class="w-200" ng-click="ctrl.ToggleOrder('_createdby')"><b translate lib="web">createdby</b></th>
<th class="w-150"></th>
</tr>
</thead>
<tbody>
<tr ng-repeat="model in ctrl.models">
<td><a style="color: inherit; text-decoration: inherit;" ng-href="#/Form/{{model._id}}">{{model.name}}</a></td>
<td>{{model._createdby}}</td>
<td>
<a ng-href="#/Form/{{model._id}}" class="btn"><em class="fas fa-play-circle"></em></a>
<a href ng-click="ctrl.DeleteOne(model)" class="btn"><em class="fas fa-trash"></em></a>
</td>
</tr>
</tbody>
</table>