mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-02 11:52:28 +01:00
cloudStack - cluster page - add "Manged State".
This commit is contained in:
parent
d4ae9483cb
commit
fdf94950b3
@ -128,13 +128,23 @@ dictionary = {
|
||||
<div class="grid_rows odd">
|
||||
<div class="grid_row_cell" style="width: 20%;">
|
||||
<div class="row_celltitles">
|
||||
<fmt:message key="label.state"/>:</div>
|
||||
<fmt:message key="allocation.state"/>:</div>
|
||||
</div>
|
||||
<div class="grid_row_cell" style="width: 79%;">
|
||||
<div class="row_celltitles" id="allocationstate">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
<div class="grid_rows even">
|
||||
<div class="grid_row_cell" style="width: 20%;">
|
||||
<div class="row_celltitles">
|
||||
<fmt:message key="managed.state"/>:</div>
|
||||
</div>
|
||||
<div class="grid_row_cell" style="width: 79%;">
|
||||
<div class="row_celltitles" id="managedstate">
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
@ -73,6 +73,7 @@ function clusterJsonToDetailsTab() {
|
||||
$thisTab.find("#hypervisortype").text(fromdb(jsonObj.hypervisortype));
|
||||
$thisTab.find("#clustertype").text(fromdb(jsonObj.clustertype));
|
||||
$thisTab.find("#allocationstate").text(fromdb(jsonObj.allocationstate));
|
||||
$thisTab.find("#managedstate").text(fromdb(jsonObj.managedstate));
|
||||
|
||||
//actions ***
|
||||
clusterBuildActionMenu(jsonObj);
|
||||
@ -105,6 +106,8 @@ function clusterClearDetailsTab() {
|
||||
$thisTab.find("#podname").text("");
|
||||
$thisTab.find("#hypervisortype").text("");
|
||||
$thisTab.find("#clustertype").text("");
|
||||
$thisTab.find("#allocationstate").text("");
|
||||
$thisTab.find("#managedstate").text("");
|
||||
|
||||
//actions ***
|
||||
var $actionMenu = $thisTab.find("#action_link #action_menu");
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user