]> git.mxchange.org Git - pizzaservice-war.git/blob - web/admin/contact/admin_contact_show.xhtml
Continued with rewrites: (please cherry-pick)
[pizzaservice-war.git] / web / admin / contact / admin_contact_show.xhtml
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html
3         lang="#{localizationController.language}" xml:lang="#{localizationController.language}"
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         >
9
10         <f:metadata>
11                 <f:viewParam name="contactId" value="#{beanHelper.contact}" converter="ContactConverter" required="true" requiredMessage="#{msg.ERROR_PARAMETER_CONTACT_ID_NOT_SET}" />
12                 <f:viewAction action="#{beanHelper.copyContactToController()}" />
13         </f:metadata>
14
15         <ui:composition template="/WEB-INF/templates/admin/admin_base.tpl">
16                 <ui:define name="admin_title">#{msg.PAGE_TITLE_ADMIN_SHOW_CONTACT}</ui:define>
17
18                 <ui:define name="content_header">
19                         #{msg.CONTENT_TITLE_ADMIN_SHOW_CONTACT}
20                 </ui:define>
21
22                 <ui:define name="content">
23                         <h:outputText styleClass="errors" value="#{msg.ERROR_CONTACT_ID_NOT_FOUND}" rendered="#{empty beanHelper.contact}" />
24
25                         <ui:include src="/WEB-INF/templates/admin/contact/admin_contact_data.tpl" />
26
27                         <div>
28                                 <ui:include src="/WEB-INF/templates/admin/contact/admin_contact_links.tpl" />
29                         </div>
30
31                         <div>
32                                 <ui:include src="/WEB-INF/templates/admin/cellphone/admin_cellphone_add_show.tpl" />
33                         </div>
34                 </ui:define>
35         </ui:composition>
36 </html>