]> git.mxchange.org Git - jjobs-war.git/blob - web/admin/contact/admin_contact_delete.xhtml
updated jar(s)
[jjobs-war.git] / web / admin / contact / admin_contact_delete.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 onPostback="true" action="#{beanHelper.copyContactToController()}" />
15                         </f:metadata>
16                 </ui:define>
17
18                 <ui:define name="admin_title">#{msg.PAGE_TITLE_ADMIN_DELETE_CONTACT}</ui:define>
19
20                 <ui:define name="content_header">
21                         #{msg.CONTENT_TITLE_ADMIN_DELETE_CONTACT}
22                 </ui:define>
23
24                 <ui:define name="content">
25                         <h:outputText styleClass="errors" value="#{msg.ERROR_CONTACT_ID_NOT_FOUND}" rendered="#{empty beanHelper.contact}" />
26
27                         <h:form id="form_admin_edit_user" rendered="#{not empty beanHelper.contact}">
28                                 <h:panelGroup styleClass="table" layout="block">
29                                         <div class="table_header">
30                                                 <h:outputFormat value="#{msg.ADMIN_DELETE_CONTACT_TITLE}">
31                                                         <f:param value="#{beanHelper.contact.contactId}" />
32                                                 </h:outputFormat>
33                                         </div>
34
35                                         <div class="para notice">
36                                                 <h:outputFormat value="#{msg.ADMIN_DELETE_CONTACT_NOTICE}" />
37                                         </div>
38
39                                         <ui:include src="/WEB-INF/templates/admin/contact/admin_show_contact_data.tpl" />
40
41                                         <div class="table_footer">
42                                                 <h:commandButton styleClass="reset right_space" type="reset" value="#{msg.BUTTON_RESET_FORM}" />
43                                                 <h:commandButton styleClass="delete_button" type="submit" id="delete_contact" value="#{msg.BUTTON_ADMIN_DELETE_CONTACT}" action="#{adminContactController.deleteContactData()}" />
44                                         </div>
45                                 </h:panelGroup>
46                         </h:form>
47                 </ui:define>
48         </ui:composition>
49 </html>