forked from openiap/opencore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathRPAWorkflows.html
More file actions
47 lines (44 loc) · 1.94 KB
/
Copy pathRPAWorkflows.html
File metadata and controls
47 lines (44 loc) · 1.94 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
<div class="row" id="title">
<div class="col-sm">
<h1 translate lib="web">rpaworkflows</h1>
</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('projectandname')"><b translate lib="web">projectandname</b></th>
<th ng-click="ctrl.ToggleOrder('_createdby')"><b translate lib="web">who</b></th>
<th ng-click="ctrl.ToggleOrder('_modified')"><b translate lib="web">updated</b></th>
<th class="w-200 h-40">Runs last 5 days</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="#/RPAWorkflow/{{model._id}}">{{model.projectandname}}</a></td>
<td>{{model._createdby}}</td>
<td>
<timesince ng-model="model._modified" />
</td>
<td class="w-200 h-40">
<canvas ng-show="model.chart!=null" id="bar" class="model.chart-base" chart-type="model.chart.charttype"
chart-data="model.chart.data" chart-labels="model.chart.labels" chart-series="model.chart.series"
height="40px" width="200">
</canvas>
<span ng-show="model.chart== null">No data</span>
</td>
<td>
<a ng-href="#/RPAWorkflow/{{model._id}}" ng-disabled="ctrl.loading==true" class="btn"><em
class="fas fa-play-circle"></em></a>
<a href ng-click="ctrl.Download(model)" ng-disabled="ctrl.loading==true" class="btn"><em
class="fas fa-file-download"></em></a>
</td>
</tr>
</tbody>
</table>