diff --git a/js/app/views/ExplorerUI.js b/js/app/views/ExplorerUI.js index ee8f473..a258b63 100644 --- a/js/app/views/ExplorerUI.js +++ b/js/app/views/ExplorerUI.js @@ -651,6 +651,9 @@ Ext.define('amdaUI.ExplorerUI', { if (view.getRecord(tip.triggerElement)) { var info = view.getRecord(tip.triggerElement).get('info'); var last_update = view.getRecord(tip.triggerElement).get('last_update'); + var start = view.getRecord(tip.triggerElement).get('start'); + if (start) + info = "<b>Started at: </b>"+ Ext.Date.format(new Date(start), "Y-m-d H:i:s")+'<br/>'+info; if (last_update && (last_update > 0)) { if (info && (info != '')) { info += '<br/>'; diff --git a/php/classes/AmdaAction.php b/php/classes/AmdaAction.php index 2fba3d7..6b5a9c4 100644 --- a/php/classes/AmdaAction.php +++ b/php/classes/AmdaAction.php @@ -168,6 +168,7 @@ class AmdaAction 'pid' => $child->getAttribute('pid'), 'status' => $child->getAttribute('status'), 'jobType' => $child->getAttribute('jobType'), + 'start' => $child->getAttribute('start'), 'info' => $child->getAttribute('info') ]; break; -- libgit2 0.21.2