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
48 lines (46 loc) · 2.02 KB
/
Copy pathRPAWorkflows.html
File metadata and controls
48 lines (46 loc) · 2.02 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
<div class="row">
<h1 translate lib="web">rpaworkflows</h1>
<p class="col-md-5 lead"></p>
<div class="form-group col-sm-3 form-horizontal">
<label class="sr-only">Filter</label>
<div class="input-group unframed-addons">
<div class="input-group-addon"><i class="fas fa-search"></i></div>
<input ng-model="ctrl.searchstring" ng-change="ctrl.Search()" class="form-control input-md"
ng-model-options="{debounce: 400}" />
</div>
</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>Runs last 5 days</th>
<th></th>
</tr>
</thead>
<tbody>
<tr ng-repeat="model in ctrl.models">
<td>{{model.projectandname}}</td>
<td>{{model._createdby}}</td>
<td>
<timesince ng-model="model._modified" />
</td>
<td class="btn-cell" height="40px" width="200">
<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 class="btn-cell">
<a ng-href="#/RPAWorkflow/{{model._id}}" ng-disabled="ctrl.loading==true" translate lib="web">invoke</a>
<a href ng-click="ctrl.Download(model)" ng-disabled="ctrl.loading==true" class="table-btn"
lib="web">download</a>
</td>
</tr>
</tbody>
</table>