]> git.mxchange.org Git - jjobs-war.git/blob - web/admin/contact/unlink/admin_contact_landline_unlink.xhtml
Please cherry-pick:
[jjobs-war.git] / web / admin / contact / unlink / admin_contact_landline_unlink.xhtml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <ui:composition template="/WEB-INF/templates/admin/admin_base.tpl"
3                                 xmlns="http://www.w3.org/1999/xhtml"
4                                 xmlns:widgets="http://mxchange.org/jsf/core/widgets"
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         <ui:define name="metadata">
10                 <f:metadata>
11                         <f:viewParam name="phoneId" value="#{beanHelper.landLineNumber}" converter="LandLineNumberConverter" required="true" requiredMessage="#{msg.ERROR_PARAMETER_PHONE_ID_NOT_SET}" converterMessage="#{msg.PARAMETER_PHONE_ID_INVALID}" />
12                         <f:viewParam name="contactId" value="#{beanHelper.contact}" converter="ContactConverter" required="true" requiredMessage="#{msg.ERROR_PARAMETER_CONTACT_ID_NOT_SET}" converterMessage="#{msg.PARAMETER_CONTACT_ID_INVALID}" />
13                 </f:metadata>
14         </ui:define>
15
16         <ui:define name="admin_title">
17                 <h:outputText value="#{msg.PAGE_TITLE_ADMIN_UNLINK_CONTACT_LAND_LINE_NUMBER}" />
18         </ui:define>
19
20         <ui:define name="content_header">
21                 <h:outputText value="#{msg.CONTENT_TITLE_ADMIN_UNLINK_CONTACT_LAND_LINE_NUMBER}" />
22         </ui:define>
23
24         <ui:define name="content">
25                 <h:form id="form_unlink_contact_landline" rendered="#{not empty beanHelper.landLineNumber and not empty beanHelper.contact and beanHelper.contact.contactLandLineNumber == beanHelper.landLineNumber}">
26                         <h:panelGroup styleClass="table" layout="block">
27                                 <div class="table-header">
28                                         <h:outputText value="#{msg.ADMIN_UNLINK_CONTACT_LAND_LINE_NUMBER_TITLE}" />
29                                 </div>
30
31                                 <div class="para">
32                                         <ui:include src="/WEB-INF/templates/admin/contact/admin_contact_data_mini.tpl" />
33                                 </div>
34
35                                 <div class="para">
36                                         <h:link outcome="admin_show_contact" value="#{msg.ADMIN_SHOW_FULL_CONTACT_DATA}">
37                                                 <f:param name="contactId" value="#{beanHelper.contact.contactId}" />
38                                         </h:link>
39                                 </div>
40
41                                 <div class="para">
42                                         <ui:include src="/WEB-INF/templates/admin/landline/admin_landline_data.tpl">
43                                                 <ui:param name="isShowPage" value="#{false}" />
44                                                 <ui:param name="showAdminLinks" value="#{false}" />
45                                         </ui:include>
46                                 </div>
47
48                                 <div class="table-footer">
49                                         <h:commandButton styleClass="button-warning" type="submit" id="unlink_landline" value="#{msg.BUTTON_ADMIN_UNLINK_LAND_LINE_NUMBER}" action="#{adminContactPhoneController.unlinkLandLineContactData()}" />
50                                 </div>
51                         </h:panelGroup>
52                 </h:form>
53
54                 <widgets:outputMessageBox message="#{msg.ERROR_BEAN_HELPER_LAND_LINE_NUMBER_NOT_SET}" messageStyleClass="alert-danger" rendered="#{empty beanHelper.landLineNumber}" />
55
56                 <widgets:outputMessageBox message="#{msg.ERROR_BEAN_HELPER_CONTACT_NOT_SET}" messageStyleClass="alert-danger" rendered="#{empty beanHelper.contact}" />
57
58                 <h:outputFormat styleClass="alert-danger" value="#{msg.ERROR_LAND_LINE_NUMBER_CONTACT_NOT_LINKED}" rendered="#{not empty beanHelper.landLineNumber and not empty beanHelper.contact and beanHelper.contact.contactLandLineNumber != beanHelper.landLineNumber}">
59                         <f:param value="#{beanHelper.landLineNumber.phoneId}" />
60                         <f:param value="#{beanHelper.contact.contactId}" />
61                 </h:outputFormat>
62         </ui:define>
63 </ui:composition>