Changing flow of viewing resources directly to editable ui.
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/454abfcb Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/454abfcb Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/454abfcb Branch: refs/heads/develop Commit: 454abfcbb324e728aaa4e2e0e1ca0925233bea78 Parents: 614145e Author: Nipurn Doshi <[email protected]> Authored: Fri Feb 26 11:02:14 2016 -0500 Committer: Nipurn Doshi <[email protected]> Committed: Fri Feb 26 11:02:14 2016 -0500 ---------------------------------------------------------------------- app/views/resource/browse.blade.php | 2 +- app/views/storage-resource/browse.blade.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/454abfcb/app/views/resource/browse.blade.php ---------------------------------------------------------------------- diff --git a/app/views/resource/browse.blade.php b/app/views/resource/browse.blade.php index d604d3f..1ec22df 100644 --- a/app/views/resource/browse.blade.php +++ b/app/views/resource/browse.blade.php @@ -76,7 +76,7 @@ > </div> </td> - <td><a href="{{URL::to('/')}}/cr/view?crId={{ $crId }}" title="View"> + <td><a href="{{URL::to('/')}}/cr/edit?crId={{ $crId }}" title="Edit"> <span class="glyphicon glyphicon-list"></span> </a> </td> http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/454abfcb/app/views/storage-resource/browse.blade.php ---------------------------------------------------------------------- diff --git a/app/views/storage-resource/browse.blade.php b/app/views/storage-resource/browse.blade.php index a6ca0e7..e769822 100644 --- a/app/views/storage-resource/browse.blade.php +++ b/app/views/storage-resource/browse.blade.php @@ -62,7 +62,7 @@ $enabled = $resource->enabled; ?> <tr id="srDetails"> - <td>{{ $srId }}</td> + <td><a href="{{URL::to('/')}}/sr/edit?srId={{ $srId }}" title="Edit">{{ $srId }}</a></td> <td>{{ $hostName }}</td> <td> <div class="checkbox">
