]> git.mxchange.org Git - jjobs-war.git/blob - web/WEB-INF/templates/admin/landline/admin_form_add_contact_landline.tpl
f10105467c65f49414c25764fe0e1a330bd0adda
[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:widgets="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         <widgets:outputMessageBox id="error-helper-contact-add-landline" message="#{msg.ERROR_BEAN_HELPER_CONTACT_NOT_SET}" messageStyleClass="alert-danger" rendered="#{empty beanHelper.contact}" />
11
12         <h:form id="form_add_contact_landline" rendered="#{not empty beanHelper.contact}">
13                 <h:panelGroup styleClass="table table-full" layout="block">
14                         <div class="table-header">
15                                 <h:outputText value="#{msg.ADMIN_ADD_CONTACT_LAND_LINE_NUMBER_FORM_TITLE}" />
16                         </div>
17
18                         <div class="para">
19                                 <ui:include src="/WEB-INF/templates/admin/contact/admin_contact_data_mini.tpl" />
20                         </div>
21
22                         <h:panelGroup styleClass="table-row" layout="block">
23                                 <div class="table-left-medium">
24                                         <p:outputLabel for="landLineNumber" value="#{msg.ADMIN_SELECT_LAND_LINE_NUMBER}" />
25                                 </div>
26
27                                 <div class="table-right-medium">
28                                         <p:selectOneMenu styleClass="select" id="landLineNumber" value="#{adminPhoneController.landLineNumber}">
29                                                 <f:converter converterId="LandLineNumberConverter" />
30                                                 <f:selectItem itemValue="#{null}" itemLabel="#{msg.NONE_SELECTED}" />
31                                                 <f:selectItems value="#{adminPhoneController.allNonLinkedLandLineNumbers()}" var="landlineNumber" itemValue="#{landlineNumber}" itemLabel="#{landlineNumber.phoneCountry.countryExternalDialPrefix} (#{landlineNumber.phoneAreaCode}) #{landlineNumber.phoneNumber}" />
32                                         </p:selectOneMenu>
33                                 </div>
34                         </h:panelGroup>
35
36                         <div class="para">
37                                 <h:outputText value="#{msg.ADMIN_OR_ENTER_CONTACT_NEW_LAND_LINE_DATA}" />
38                         </div>
39
40                         <widgets:outputLandLineInputTableRow targetController="#{adminPhoneController}" labelMessage="#{msg.ADMIN_PERSONAL_DATA_LAND_LINE_NUMBER}" />
41
42                         <div class="table-footer">
43                                 <p:commandButton styleClass="reset" type="reset" value="#{msg.BUTTON_RESET_FORM}" />
44
45                                 <p:commandButton styleClass="submit" id="submit_add_link_contact_landline" type="submit" action="#{adminContactPhoneController.doLinkAddLandLineNumber(beanHelper.contact)}" value="#{msg.BUTTON_ADMIN_LINK_ADD_CONTACT_LAND_LINE_NUMBER}">
46                                         <f:param name="contactId" value="#{param.contactId}" />
47                                 </p:commandButton>
48                         </div>
49                 </h:panelGroup>
50         </h:form>
51 </ui:composition>