]> git.mxchange.org Git - jjobs-war.git/blob - web/WEB-INF/templates/admin/landline/admin_form_add_contact_landline.tpl
57870cb441449bea06846f23bf4426b5f09c5394
[jjobs-war.git] / web / WEB-INF / templates / admin / landline / admin_form_add_contact_landline.tpl
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <ui:composition
3         xmlns="http://www.w3.org/1999/xhtml"
4         xmlns:core="http://mxchange.org/jsf/core/widgets"
5         xmlns:f="http://xmlns.jcp.org/jsf/core"
6         xmlns:h="http://xmlns.jcp.org/jsf/html"
7         xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
8         xmlns:p="http://primefaces.org/ui"
9         >
10
11         <core:outputMessageBox panelGroupId="errorHelperContactAddLandline" message="#{msg.ERROR_BEAN_HELPER_CONTACT_NOT_SET}" messageStyleClass="alert-danger" rendered="#{empty beanHelper.contact}" />
12
13         <h:form rendered="#{not empty beanHelper.contact}">
14                 <h:panelGroup layout="block">
15                         <div class="table-header">
16                                 <h:outputText value="#{msg.ADMIN_ADD_CONTACT_LAND_LINE_NUMBER_FORM_TITLE}" />
17                         </div>
18
19                         <div class="para">
20                                 <ui:include src="/WEB-INF/templates/admin/contact/admin_contact_data_mini.tpl" />
21                         </div>
22
23                         <h:panelGroup styleClass="table-row" layout="block">
24                                 <div class="table-left-medium">
25                                         <p:outputLabel for="landLineNumber" value="#{msg.ADMIN_SELECT_LAND_LINE_NUMBER}" />
26                                 </div>
27
28                                 <div class="table-right-medium">
29                                         <p:selectOneMenu styleClass="select" id="landLineNumber" value="#{adminPhoneController.landLineNumber}">
30                                                 <f:converter converterId="LandLineNumberConverter" />
31
32                                                 <f:selectItem itemValue="#{null}" itemLabel="#{msg.NONE_SELECTED}" />
33
34                                                 <f:selectItems
35                                                         value="#{adminPhoneController.allNonLinkedLandLineNumbers()}"
36                                                         var="landlineNumber"
37                                                         itemValue="#{landlineNumber}"
38                                                         itemLabel="#{landlineNumber.phoneCountry.countryExternalDialPrefix} (#{landlineNumber.phoneAreaCode}) #{landlineNumber.phoneNumber}"
39                                                         />
40                                         </p:selectOneMenu>
41                                 </div>
42                         </h:panelGroup>
43
44                         <div class="para">
45                                 <h:outputText value="#{msg.ADMIN_OR_ENTER_CONTACT_NEW_LAND_LINE_DATA}" />
46                         </div>
47
48                         <core:outputLandLineInputTableRow targetController="#{adminPhoneController}" labelMessage="#{msg.ADMIN_PERSONAL_DATA_LAND_LINE_NUMBER}" />
49
50                         <p:panelGrid columns="2" layout="grid">
51                                 <p:commandButton
52                                         type="reset"
53                                         value="#{msg.BUTTON_RESET_FORM}"
54                                         />
55
56                                 <p:commandButton
57                                         type="submit"
58                                         action="#{adminContactPhoneController.doLinkAddLandLineNumber(beanHelper.contact)}"
59                                         value="#{msg.BUTTON_ADMIN_LINK_ADD_CONTACT_LAND_LINE_NUMBER}"
60                                         >
61                                         <f:param name="contactId" value="#{param.contactId}" />
62                                 </p:commandButton>
63                         </p:panelGrid>
64                 </h:panelGroup>
65         </h:form>
66 </ui:composition>