]> git.mxchange.org Git - jjobs-war.git/blob - web/admin/contact/admin_contact_edit.xhtml
re-organized pages:
[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         <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_EDIT_CONTACT}</ui:define>
18
19                 <ui:define name="content_header">
20                         #{msg.CONTENT_TITLE_ADMIN_EDIT_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                         <h:form id="admin_edit_user" rendered="#{not empty adminHelper.contact}">
27                                 <div class="table">
28                                         <div class="table_header">
29                                                 <h:outputFormat value="#{msg.ADMIN_EDIT_CONTACT_TITLE}">
30                                                         <f:param value="#{adminHelper.contact.contactId}" />
31                                                 </h:outputFormat>
32                                         </div>
33
34                                         <div class="para notice">
35                                                 #{msg.ADMIN_CONTACT_PERSONAL_DATA_MINIMUM_NOTICE}
36                                         </div>
37
38                                         <ui:include src="/WEB-INF/templates/admin/contact/admin_form_contact_data.tpl">
39                                                 <ui:param name="mode" value="edit" />
40                                         </ui:include>
41
42                                         <div class="table_footer">
43                                                 <h:commandButton styleClass="reset" type="reset" value="#{msg.BUTTON_RESET_FORM}" />
44                                                 <h:commandButton styleClass="submit" type="submit" id="register" value="#{msg.BUTTON_ADMIN_EDIT_CONTACT}" action="#{adminContactController.editContactData()}" />
45                                         </div>
46                                 </div>
47                         </h:form>
48                 </ui:define>
49         </ui:composition>
50 </html>