]> git.mxchange.org Git - jjobs-war.git/blob - web/admin/contact/admin_contact_edit.xhtml
000a0b7d90164344876e5393ff3024c01408114f
[jjobs-war.git] / web / admin / contact / admin_contact_edit.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         <ui:composition template="/WEB-INF/templates/admin/admin_base.tpl">
11                 <ui:define name="metadata">
12                         <f:metadata>
13                                 <f:viewParam name="contactId" value="#{beanHelper.contact}" converter="ContactConverter" required="true" requiredMessage="#{msg.ERROR_PARAMETER_CONTACT_ID_NOT_SET}" />
14                                 <f:viewAction action="#{beanHelper.copyContactToController()}" />
15                         </f:metadata>
16                 </ui:define>
17
18                 <ui:define name="admin_title">
19                         <h:outputText value="#{msg.PAGE_TITLE_ADMIN_EDIT_CONTACT}" />
20                 </ui:define>
21
22                 <ui:define name="content_header">
23                         <h:outputText value="#{msg.CONTENT_TITLE_ADMIN_EDIT_CONTACT}" />
24                 </ui:define>
25
26                 <ui:define name="content">
27                         <ui:fragment rendered="#{empty beanHelper.contact}">
28                                 <ui:include src="/WEB-INF/templates/generic/message_box.tpl">
29                                         <ui:param name="message" value="#{msg.ERROR_CONTACT_ID_NOT_FOUND}" />
30                                         <ui:param name="styleClass" value="errors" />
31                                 </ui:include>
32                         </ui:fragment>
33
34                         <h:form id="form_admin_edit_user" rendered="#{not empty beanHelper.contact}">
35                                 <h:panelGroup styleClass="table_medium" layout="block">
36                                         <div class="table_header">
37                                                 <h:outputFormat value="#{msg.ADMIN_EDIT_CONTACT_TITLE}">
38                                                         <f:param value="#{beanHelper.contact.contactId}" />
39                                                 </h:outputFormat>
40                                         </div>
41
42                                         <div class="para notice">
43                                                 <h:outputFormat value="#{msg.ADMIN_CONTACT_PERSONAL_DATA_MINIMUM_NOTICE}" />
44                                         </div>
45
46                                         <ui:include src="/WEB-INF/templates/admin/contact/admin_form_contact_data.tpl">
47                                                 <ui:param name="mode" value="edit" />
48                                         </ui:include>
49
50                                         <div class="table_footer">
51                                                 <h:commandButton styleClass="reset right_space" type="reset" value="#{msg.BUTTON_RESET_FORM}" />
52                                                 <h:commandButton styleClass="submit" type="submit" id="edit_contact" value="#{msg.BUTTON_ADMIN_EDIT_CONTACT}" action="#{adminContactController.editContactData()}" />
53                                         </div>
54                                 </h:panelGroup>
55                         </h:form>
56                 </ui:define>
57         </ui:composition>
58 </html>