diff --git a/ui/jsp/template.jsp b/ui/jsp/template.jsp index 19b4bb51f1c..a3761de9ee0 100644 --- a/ui/jsp/template.jsp +++ b/ui/jsp/template.jsp @@ -182,8 +182,18 @@ - +
+
+
+ <%=t.t("hypervisor")%>:
+
+
+
+
+
+
+
<%=t.t("Account")%>:
@@ -193,7 +203,7 @@
-
+
<%=t.t("Domain")%>:
@@ -203,7 +213,7 @@
-
+
<%=t.t("Created")%>:
diff --git a/ui/scripts/cloud.core.template.js b/ui/scripts/cloud.core.template.js index cb84923628f..2783dde7256 100644 --- a/ui/scripts/cloud.core.template.js +++ b/ui/scripts/cloud.core.template.js @@ -310,6 +310,8 @@ function templateJsonToDetailsTab() { $thisTab.find("#ostypename").text(fromdb(jsonObj.ostypename)); $thisTab.find("#ostypename_edit").val(jsonObj.ostypeid); + $thisTab.find("#hypervisor").text(fromdb(jsonObj.hypervisor)); + $thisTab.find("#account").text(fromdb(jsonObj.account)); $thisTab.find("#domain").text(fromdb(jsonObj.domain)); setDateField(jsonObj.created, $thisTab.find("#created"));