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