Commit 4711b5b48b3f023eb759818abdc45fd626ba20fa
1 parent
07e4ac11
Exists in
master
and in
39 other branches
Done
Showing
2 changed files
with
4 additions
and
0 deletions
Show diff stats
js/app/views/ExplorerUI.js
@@ -651,6 +651,9 @@ Ext.define('amdaUI.ExplorerUI', { | @@ -651,6 +651,9 @@ Ext.define('amdaUI.ExplorerUI', { | ||
651 | if (view.getRecord(tip.triggerElement)) { | 651 | if (view.getRecord(tip.triggerElement)) { |
652 | var info = view.getRecord(tip.triggerElement).get('info'); | 652 | var info = view.getRecord(tip.triggerElement).get('info'); |
653 | var last_update = view.getRecord(tip.triggerElement).get('last_update'); | 653 | var last_update = view.getRecord(tip.triggerElement).get('last_update'); |
654 | + var start = view.getRecord(tip.triggerElement).get('start'); | ||
655 | + if (start) | ||
656 | + info = "<b>Started at: </b>"+ Ext.Date.format(new Date(start), "Y-m-d H:i:s")+'<br/>'+info; | ||
654 | if (last_update && (last_update > 0)) { | 657 | if (last_update && (last_update > 0)) { |
655 | if (info && (info != '')) { | 658 | if (info && (info != '')) { |
656 | info += '<br/>'; | 659 | info += '<br/>'; |
php/classes/AmdaAction.php
@@ -168,6 +168,7 @@ class AmdaAction | @@ -168,6 +168,7 @@ class AmdaAction | ||
168 | 'pid' => $child->getAttribute('pid'), | 168 | 'pid' => $child->getAttribute('pid'), |
169 | 'status' => $child->getAttribute('status'), | 169 | 'status' => $child->getAttribute('status'), |
170 | 'jobType' => $child->getAttribute('jobType'), | 170 | 'jobType' => $child->getAttribute('jobType'), |
171 | + 'start' => $child->getAttribute('start'), | ||
171 | 'info' => $child->getAttribute('info') | 172 | 'info' => $child->getAttribute('info') |
172 | ]; | 173 | ]; |
173 | break; | 174 | break; |