]> git.mxchange.org Git - pizzaservice-war.git/blob - web/WEB-INF/templates/admin/category/admin_parent_category_selection_box.tpl
Please cherry-pick:
[pizzaservice-war.git] / web / WEB-INF / templates / admin / category / admin_parent_category_selection_box.tpl
1 <ui:composition
2         xmlns="http://www.w3.org/1999/xhtml"
3         xmlns:f="http://java.sun.com/jsf/core"
4         xmlns:h="http://java.sun.com/jsf/html"
5         xmlns:ui="http://xmlns.jcp.org/jsf/facelets">
6
7         <h:selectOneMenu class="select" id="parentCategory" value="#{adminCategoryController.parentCategory}">
8                 <f:selectItem itemValue="" itemLabel="#{msg.ADMIN_CATEGORY_HAS_NO_PARENT}" />
9                 <f:selectItems value="#{categoryController.allCategoriesParent}" var="parent_category" itemValue="#{parent_category.categoryId}" itemLabel="#{parent_category.categoryTitle}" />
10         </h:selectOneMenu>
11 </ui:composition>