]> git.mxchange.org Git - jjobs-war.git/blob - web/admin/mobile/admin_mobile_list.xhtml
Please cherry-pick (Massive rewrite):
[jjobs-war.git] / web / admin / mobile / admin_mobile_list.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="admin_title">
12                         <h:outputText value="#{msg.PAGE_TITLE_ADMIN_LIST_CONTACT_MOBILE_NUMBER}" />
13                 </ui:define>
14
15                 <ui:define name="content_header">
16                         <h:outputText value="#{msg.CONTENT_TITLE_ADMIN_LIST_CONTACT_MOBILE_NUMBER}" />
17                 </ui:define>
18
19                 <ui:define name="content">
20                         <h:dataTable id="table_list_mobile" var="mobile" value="#{phoneController.allMobileNumbers()}" styleClass="table_full" headerClass="table_header_column" summary="#{msg.TABLE_SUMMARY_ADMIN_LIST_MOBILES}" rendered="#{not phoneController.allMobileNumbers().isEmpty()}">
21                                 <h:column>
22                                         <f:facet name="header">
23                                                 <h:outputText value="#{msg.ADMIN_SHOW_PHONE_ID}" />
24                                         </f:facet>
25
26                                         <h:link outcome="admin_show_mobile" value="#{mobile.phoneId}" title="#{msg.ADMIN_LINK_SHOW_SHORT_TITLE}">
27                                                 <f:param name="phoneId" value="#{mobile.phoneId}" />
28                                         </h:link>
29                                 </h:column>
30
31                                 <h:column>
32                                         <f:facet name="header">
33                                                 <h:outputText value="#{msg.ADMIN_SHOW_MOBILE_PROVIDER_NAME}" />
34                                         </f:facet>
35
36                                         <h:link outcome="admin_show_mobile_provider" value="#{mobile.mobileProvider.providerName}">
37                                                 <f:param name="providerId" value="#{mobile.mobileProvider.providerId}" />
38                                         </h:link>
39                                 </h:column>
40
41                                 <h:column>
42                                         <f:facet name="header">
43                                                 <h:outputText value="#{msg.ADMIN_SHOW_MOBILE_NUMBER_COMPLETE}" />
44                                         </f:facet>
45
46                                         <h:outputText value="#{mobile.mobileProvider.providerCountry.countryExternalDialPrefix}#{mobile.mobileProvider.providerDialPrefix}-#{mobile.phoneNumber}" />
47                                 </h:column>
48
49                                 <h:column>
50                                         <f:facet name="header">
51                                                 <h:outputText value="#{msg.ADMIN_SHOW_PHONE_CREATED}" />
52                                         </f:facet>
53
54                                         <h:outputText value="#{mobile.phoneEntryCreated.time}">
55                                                 <f:convertDateTime type="both" />
56                                         </h:outputText>
57                                 </h:column>
58
59                                 <h:column>
60                                         <f:facet name="header">
61                                                 <h:outputText value="#{msg.ADMIN_SHOW_PHONE_UPDATED}" />
62                                         </f:facet>
63
64                                         <h:outputText value="#{mobile.phoneEntryUpdated.time}">
65                                                 <f:convertDateTime type="both" />
66                                         </h:outputText>
67                                 </h:column>
68                         </h:dataTable>
69
70                         <ui:fragment rendered="#{phoneController.allMobileNumbers().isEmpty()}">
71                                 <ui:include src="/WEB-INF/templates/generic/message_box.tpl">
72                                         <ui:param name="message" value="#{msg.ADMIN_LIST_MOBILE_EMPTY}" />
73                                         <ui:param name="styleClass" value="errors" />
74                                 </ui:include>
75                         </ui:fragment>
76                 </ui:define>
77         </ui:composition>
78 </html>