Hide user resource profile settings from gateway-providers
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/a5d1637d Tree: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/tree/a5d1637d Diff: http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/diff/a5d1637d Branch: refs/heads/develop Commit: a5d1637db9aed15245699a4184e1296011f2cff3 Parents: eb48575 Author: Marcus Christie <[email protected]> Authored: Sat Jul 1 20:43:36 2017 -0400 Committer: Marcus Christie <[email protected]> Committed: Sat Jul 1 20:43:36 2017 -0400 ---------------------------------------------------------------------- app/views/account/settings.blade.php | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/airavata-php-gateway/blob/a5d1637d/app/views/account/settings.blade.php ---------------------------------------------------------------------- diff --git a/app/views/account/settings.blade.php b/app/views/account/settings.blade.php index cdfdff7..ea842aa 100644 --- a/app/views/account/settings.blade.php +++ b/app/views/account/settings.blade.php @@ -26,7 +26,8 @@ </a> </div> - {{--<div class="row well user-settings"> + @if( !Session::has("gateway-provider")) + <div class="row well user-settings"> <h3>Manage Personal Computing and Storage Resources</h3> <p>Use these settings if you have your own compute and/or @@ -64,7 +65,8 @@ </div> </div> </a> - </div>--}} + </div> + @endif </div> @stop
