]> git.mxchange.org Git - jjobs-war.git/blob - web/admin/contact/admin_contact_edit.xhtml
MOJARRA - Please cherry-pick:
[jjobs-war.git] / web / admin / contact / admin_contact_edit.xhtml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <ui:composition template="/WEB-INF/templates/admin/admin_base.tpl"
3                                 xmlns="http://www.w3.org/1999/xhtml"
4                                 xmlns:generic="http://mxchange.org/jsf/core"
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         <ui:define name="metadata">
10                 <f:metadata>
11                         <f:viewParam name="contactId" value="#{beanHelper.contact}" converter="ContactConverter" required="true" requiredMessage="#{msg.ERROR_PARAMETER_CONTACT_ID_NOT_SET}" converterMessage="#{msg.PARAMETER_CONTACT_ID_INVALID}" />
12                         <f:viewAction onPostback="true" action="#{beanHelper.notifyControllerContactConverted()}" />
13                 </f:metadata>
14         </ui:define>
15
16         <ui:define name="admin_title">
17                 <h:outputText value="#{msg.PAGE_TITLE_ADMIN_EDIT_CONTACT}" />
18         </ui:define>
19
20         <ui:define name="content_header">
21                 <h:outputText value="#{msg.CONTENT_TITLE_ADMIN_EDIT_CONTACT}" />
22         </ui:define>
23
24         <ui:define name="content">
25                 <generic:outputMessageBox message="#{msg.ERROR_CONTACT_ID_NOT_FOUND}" styleClass="errors" rendered="#{empty beanHelper.contact}" />
26
27                 <h:form id="form_admin_edit_user" rendered="#{not empty beanHelper.contact}">
28                         <h:panelGroup styleClass="table_medium" layout="block">
29                                 <div class="table_header">
30                                         <h:outputFormat value="#{msg.ADMIN_EDIT_CONTACT_TITLE}">
31                                                 <f:param value="#{beanHelper.contact.contactId}" />
32                                         </h:outputFormat>
33                                 </div>
34
35                                 <div class="para notice">
36                                         <h:outputText value="#{msg.ADMIN_CONTACT_PERSONAL_DATA_MINIMUM_NOTICE}" />
37                                 </div>
38
39                                 <ui:include src="/WEB-INF/templates/admin/contact/admin_form_contact_data.tpl">
40                                         <ui:param name="mode" value="edit" />
41                                 </ui:include>
42
43                                 <div class="table_footer">
44                                         <h:commandButton styleClass="reset right_space" type="reset" value="#{msg.BUTTON_RESET_FORM}" />
45                                         <h:commandButton styleClass="submit" type="submit" id="edit_contact" value="#{msg.BUTTON_ADMIN_EDIT_CONTACT}" action="#{adminContactController.editContactData()}" />
46                                 </div>
47                         </h:panelGroup>
48                 </h:form>
49         </ui:define>
50 </ui:composition>