]> git.mxchange.org Git - jfinancials-war.git/blob - web/admin/generic_product/admin_generic_product_show.xhtml
e0e8fc3068a431e1b14a61909c495575130e34f5
[jfinancials-war.git] / web / admin / generic_product / admin_generic_product_show.xhtml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <ui:composition
3         template="/WEB-INF/templates/admin/admin_base.tpl"
4         xmlns="http://www.w3.org/1999/xhtml"
5         xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
6         xmlns:h="http://xmlns.jcp.org/jsf/html"
7         xmlns:f="http://xmlns.jcp.org/jsf/core"
8         xmlns:p="http://primefaces.org/ui"
9         >
10
11         <ui:define name="metadata">
12                 <f:metadata>
13                         <f:viewParam
14                                 name="productId"
15                                 value="#{adminGenericProductActionController.currentProduct}"
16                                 converter="GenericProductConverter"
17                                 required="true"
18                                 requiredMessage="#{product.ERROR_PARAMETER_PRODUCT_ID_NOT_SET}"
19                                 converterMessage="#{product.PARAMETER_PRODUCT_ID_INVALID}"
20                                 />
21
22                         <f:viewAction
23                                 action="#{adminGenericProductActionController.copyAllProductProperties()}"
24                                 />
25                 </f:metadata>
26         </ui:define>
27
28         <ui:define name="document_admin_title">
29                 <h:outputText value="#{product.PAGE_TITLE_ADMIN_SHOW_GENERIC_PRODUCT}" />
30         </ui:define>
31
32         <ui:define name="content_header">
33                 <h:outputText value="#{product.CONTENT_TITLE_ADMIN_SHOW_GENERIC_PRODUCT}" />
34         </ui:define>
35
36         <ui:define name="content">
37                 <!-- @TODO Here goes your content. //-->
38         </ui:define>
39 </ui:composition>