diff --git a/ui/jsp/host.jsp b/ui/jsp/host.jsp index a380ebee95f..05be4619e9b 100644 --- a/ui/jsp/host.jsp +++ b/ui/jsp/host.jsp @@ -355,7 +355,7 @@ -
+
ID:
@@ -365,7 +365,7 @@
-
+
Name:
@@ -375,7 +375,7 @@
-
+
IP:
@@ -385,7 +385,7 @@
-
+
Service Offering:
@@ -395,7 +395,7 @@
-
+
Created:
@@ -405,7 +405,7 @@
-
+
Account:
@@ -415,7 +415,7 @@
-
+
Domain:
@@ -455,7 +455,7 @@
-
+
<%=t.t("ID")%>:
@@ -465,7 +465,7 @@
-
+
<%=t.t("Name")%>:
@@ -475,7 +475,7 @@
-
+
<%=t.t("Public IP")%>:
@@ -495,7 +495,7 @@
-
+
<%=t.t("Guest IP")%>:
@@ -565,7 +565,7 @@
-
+
ID:
@@ -575,7 +575,7 @@
-
+
Name:
@@ -585,6 +585,18 @@
+ +
+
+
+ <%=t.t("system.vm.type")%>:
+
+
+
+
+
+
+
@@ -595,7 +607,7 @@
-
+
Private IP:
diff --git a/ui/scripts/cloud.core.host.js b/ui/scripts/cloud.core.host.js index 82eee69567d..2435c7d3db6 100644 --- a/ui/scripts/cloud.core.host.js +++ b/ui/scripts/cloud.core.host.js @@ -314,7 +314,8 @@ function hostSystemvmJSONToTemplate(jsonObj, template) { template.attr("id", "host_systemvm_"+jsonObj.id).data("hostSystemvmId", jsonObj.id); template.find("#grid_header_title").text(fromdb(jsonObj.name)); template.find("#id").text(jsonObj.id); - template.find("#name").text(fromdb(jsonObj.name)); + template.find("#name").text(fromdb(jsonObj.name)); + template.find("#systemvmtype").text(toSystemVMTypeText(jsonObj.systemvmtype)); template.find("#publicip").text(fromdb(jsonObj.publicip)); template.find("#privateip").text(fromdb(jsonObj.privateip)); setDateField(jsonObj.created, template.find("#created"));