]> git.mxchange.org Git - jjobs-war.git/blob - web/admin/contact/admin_contact_edit.xhtml
Continued with rewriting:
[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                                                 #{msg.ADMIN_EDIT_CONTACT_TITLE}
30                                         </div>
31
32                                         <div class="para notice">
33                                                 #{msg.ADMIN_PERSONAL_DATA_MINIMUM_NOTICE}
34                                         </div>
35
36                                         <ui:include src="/WEB-INF/templates/admin/contact/admin_form_contact_data.tpl">
37                                                 <ui:param name="mode" value="edit" />
38                                         </ui:include>
39
40                                         <div class="table_footer">
41                                                 <h:commandButton class="reset" type="reset" value="#{msg.BUTTON_RESET_FORM}" />
42                                                 <h:commandButton class="submit" type="submit" id="register" value="#{msg.BUTTON_ADMIN_EDIT_CONTACT}" action="#{adminUserController.changeContactData()}" />
43                                         </div>
44                                 </div>
45                         </h:form>
46                 </ui:define>
47         </ui:composition>
48 </html>