diff --git a/src/sunstone/public/app/tabs/templates-tab/form-panels/instantiate/templateRow.hbs b/src/sunstone/public/app/tabs/templates-tab/form-panels/instantiate/templateRow.hbs index 533b9738df..1b6cdab2c6 100644 --- a/src/sunstone/public/app/tabs/templates-tab/form-panels/instantiate/templateRow.hbs +++ b/src/sunstone/public/app/tabs/templates-tab/form-panels/instantiate/templateRow.hbs @@ -22,6 +22,9 @@ {{tr "COST"}} / {{tr "HOUR"}} + + +
diff --git a/src/sunstone/public/app/tabs/templates-tab/panels/info/html.hbs b/src/sunstone/public/app/tabs/templates-tab/panels/info/html.hbs index a6e34b7153..4c5acac933 100644 --- a/src/sunstone/public/app/tabs/templates-tab/panels/info/html.hbs +++ b/src/sunstone/public/app/tabs/templates-tab/panels/info/html.hbs @@ -23,6 +23,9 @@ + + + {{tr "ID"}} {{element.ID}} diff --git a/src/sunstone/public/app/tabs/vms-tab/panels/info/html.hbs b/src/sunstone/public/app/tabs/vms-tab/panels/info/html.hbs index e19be83db1..05c1921b49 100644 --- a/src/sunstone/public/app/tabs/vms-tab/panels/info/html.hbs +++ b/src/sunstone/public/app/tabs/vms-tab/panels/info/html.hbs @@ -23,6 +23,9 @@ + + + {{tr "ID"}} {{element.ID}} diff --git a/src/sunstone/public/app/tabs/vms-tab/panels/storage.js b/src/sunstone/public/app/tabs/vms-tab/panels/storage.js index 12d3c1289e..052abd65d8 100644 --- a/src/sunstone/public/app/tabs/vms-tab/panels/storage.js +++ b/src/sunstone/public/app/tabs/vms-tab/panels/storage.js @@ -474,6 +474,12 @@ define(function(require) { context.off("change", ".snapshot_check_item"); context.on("change", ".snapshot_check_item", function() { var snapshotsSection = $(this).closest('.snapshots'); + if(that.element.STATE == "3"){ + $(".disk_snapshot_revert", snapshotsSection).hide(); + } + else{ + $(".disk_snapshot_revert", snapshotsSection).show(); + } // Unselect other check inputs var checked = $(this).is(':checked');