Experiment Summary UI improved for Job details.
Project: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/repo Commit: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/commit/ec279ca5 Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/ec279ca5 Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/ec279ca5 Branch: refs/heads/master Commit: ec279ca5b51578aff66e34d47a3174903455867f Parents: 6b20ef9 Author: Nipurn Doshi <[email protected]> Authored: Fri Jan 29 10:40:18 2016 -0500 Committer: Nipurn Doshi <[email protected]> Committed: Fri Jan 29 10:40:18 2016 -0500 ---------------------------------------------------------------------- app/views/partials/experiment-info.blade.php | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/ec279ca5/app/views/partials/experiment-info.blade.php ---------------------------------------------------------------------- diff --git a/app/views/partials/experiment-info.blade.php b/app/views/partials/experiment-info.blade.php index 1d53c17..7ff3f27 100644 --- a/app/views/partials/experiment-info.blade.php +++ b/app/views/partials/experiment-info.blade.php @@ -62,10 +62,23 @@ @foreach( $expVal["jobDetails"] as $index => $jobDetail) <tr> - <th>Job Name : {{$jobDetail->jobName}}</th> - <td>Job ID : {{ $jobDetail->jobId}}</td> - <td> Status : {{$jobDetail->jobStatus->jobStateName }}</td> - <td> Creation Time : <span class="time" unix-time="{{$jobDetail->creationTime}}"></span></td> + <th>Job</th> + <td> + <table class="table table-bordered"> + <tr> + <td>Name</td> + <td>ID</td> + <td>Status</td> + <td>Creation Time</td> + </tr> + <tr> + <td>{{$jobDetail->jobName}}</td> + <td>{{ $jobDetail->jobId}}</td> + <td>{{$jobDetail->jobStatus->jobStateName }}</td> + <td class="time" unix-time="{{$jobDetail->creationTime}}"></td> + </tr> + </table> + </td> </tr> @endforeach <!--
