]> git.mxchange.org Git - pizzaservice-war.git/blob - web/admin/contact/admin_contact_show.xhtml
Continued with contacts:
[pizzaservice-war.git] / web / admin / contact / admin_contact_show.xhtml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html
4         lang="#{localizationController.language}" xml:lang="#{localizationController.language}"
5         xmlns="http://www.w3.org/1999/xhtml"
6         xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
7         xmlns:h="http://xmlns.jcp.org/jsf/html"
8         xmlns:f="http://xmlns.jcp.org/jsf/core"
9         >
10
11         <f:metadata>
12                 <f:viewParam name="contactId" value="#{adminHelper.contact}" converter="ContactConverter" required="true" requiredMessage="#{msg.ERROR_PARAMETER_CONTACT_ID_NOT_SET}" />
13                 <f:viewAction action="#{adminHelper.copyContactToController()}" />
14         </f:metadata>
15
16         <ui:composition template="/WEB-INF/templates/admin/admin_base.tpl">
17                 <ui:define name="admin_title">#{msg.PAGE_TITLE_ADMIN_SHOW_CONTACT}</ui:define>
18
19                 <ui:define name="content_header">
20                         #{msg.CONTENT_TITLE_ADMIN_SHOW_CONTACT}
21                 </ui:define>
22
23                 <ui:define name="content">
24                         <h:outputText styleClass="errors" value="#{msg.ERROR_CONTACT_ID_NOT_FOUND}" rendered="#{empty adminHelper.contact}" />
25
26                         <ui:include src="/WEB-INF/templates/admin/contact/admin_contact_data.tpl" />
27
28                         <div>
29                                 <ui:include src="/WEB-INF/templates/admin/contact/admin_contact_links.tpl">
30                                         <ui:param name="contact" value="#{adminHelper.contact}" />
31                                 </ui:include>
32                         </div>
33
34                         <div>
35                                 <ui:include src="/WEB-INF/templates/admin/cellphone/admin_cellphone_add_show.tpl">
36                                         <ui:param name="cellphoneNumber" value="#{adminHelper.contact.contactCellphoneNumber}" />
37                                         <ui:param name="contact" value="#{adminHelper.contact}" />
38                                 </ui:include>
39                         </div>
40                 </ui:define>
41         </ui:composition>
42 </html>