diff --git a/client/WEB-INF/classes/resources/resource.properties b/client/WEB-INF/classes/resources/resource.properties index a448bbbc7b0..bc806d40848 100644 --- a/client/WEB-INF/classes/resources/resource.properties +++ b/client/WEB-INF/classes/resources/resource.properties @@ -62,6 +62,7 @@ created = Created disk.size = Disk Size value = Value description = Description +category = Category disk.offering = Disk Offering copy.ISO.to = Copy ISO to diff --git a/ui/new/jsp/globalsetting.jsp b/ui/new/jsp/globalsetting.jsp index eaa07e42542..f4f8243bd08 100644 --- a/ui/new/jsp/globalsetting.jsp +++ b/ui/new/jsp/globalsetting.jsp @@ -76,7 +76,17 @@
- + +
+
+
+ <%=t.t("category")%>:
+
+
+
+
+
+
diff --git a/ui/new/scripts/cloud.core2.globalsetting.js b/ui/new/scripts/cloud.core2.globalsetting.js index 77382cb6700..2a908a0af3d 100644 --- a/ui/new/scripts/cloud.core2.globalsetting.js +++ b/ui/new/scripts/cloud.core2.globalsetting.js @@ -67,4 +67,5 @@ function globalSettingJsonToDetailsTab(jsonObj) { $detailsTab.find("#value").text(fromdb(jsonObj.value)); $detailsTab.find("#value_edit").val(fromdb(jsonObj.value)); $detailsTab.find("#description").text(fromdb(jsonObj.description)); + $detailsTab.find("#category").text(fromdb(jsonObj.category)); } \ No newline at end of file