diff --git a/src/sunstone/etc/sunstone-views/vdcadmin.yaml b/src/sunstone/etc/sunstone-views/vdcadmin.yaml index e74cb6bf45..c095c08ca3 100644 --- a/src/sunstone/etc/sunstone-views/vdcadmin.yaml +++ b/src/sunstone/etc/sunstone-views/vdcadmin.yaml @@ -126,8 +126,8 @@ tabs: actions: VM.refresh: true VM.create_dialog: false - VM.easy_provision: true - VM.chown: false + VM.easy_provision: false + VM.chown: true VM.chgrp: false VM.chmod: true VM.deploy: false @@ -178,11 +178,11 @@ tabs: Template.easy_provision: false Template.update_dialog: false Template.instantiate_vms: false - Template.chown: false + Template.chown: true Template.chgrp: false Template.chmod: true Template.clone_dialog: false - Template.delete: false + Template.delete: true template_creation_tabs: general: true storage: true @@ -213,7 +213,7 @@ tabs: actions: Image.refresh: true Image.create_dialog: false - Image.chown: false + Image.chown: true Image.chgrp: false Image.chmod: true Image.enable: true diff --git a/src/sunstone/public/js/plugins/dashboard-tab.js b/src/sunstone/public/js/plugins/dashboard-tab.js index 43a337e464..cd6a905e93 100644 --- a/src/sunstone/public/js/plugins/dashboard-tab.js +++ b/src/sunstone/public/js/plugins/dashboard-tab.js @@ -49,8 +49,8 @@ var widgets = {
\
\

\ -
\ - \ + -
\ + -\

\
\
\ diff --git a/src/sunstone/public/js/plugins/groups-tab.js b/src/sunstone/public/js/plugins/groups-tab.js index f0c12e0f14..9c35733922 100644 --- a/src/sunstone/public/js/plugins/groups-tab.js +++ b/src/sunstone/public/js/plugins/groups-tab.js @@ -443,8 +443,11 @@ function insert_views(dialog_name){ var views_array = config['available_views']; for (var i = 0; i < views_array.length; i++) { + var checked = views_array[i] == 'cloud' ? "checked" : ""; + views_checks_str = views_checks_str + - '' + + '' + '' }