]> git.mxchange.org Git - jjobs-war.git/blob - web/admin/mobile/admin_contact_mobile_list.xhtml
79c900887a68522610d50650e374264800a491d7
[jjobs-war.git] / web / admin / mobile / admin_contact_mobile_list.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:ui="http://xmlns.jcp.org/jsf/facelets"
5                                 xmlns:h="http://xmlns.jcp.org/jsf/html"
6                                 xmlns:f="http://xmlns.jcp.org/jsf/core"
7                                 xmlns:p="http://primefaces.org/ui">
8
9         <ui:define name="document_admin_title">
10                 <h:outputText value="#{msg.PAGE_TITLE_ADMIN_LIST_CONTACT_MOBILE_NUMBER}" />
11         </ui:define>
12
13         <ui:define name="content_header">
14                 <h:outputText value="#{msg.CONTENT_TITLE_ADMIN_LIST_CONTACT_MOBILE_NUMBER}" />
15         </ui:define>
16
17         <ui:define name="content">
18                 <p:dataTable
19                         id="table_list_mobiles"
20                         var="mobile"
21                         value="#{phoneController.allMobileNumbers()}"
22                         tableStyleClass="table table-full"
23                         paginator="true"
24                         rows="10"
25                         summary="#{msg.TABLE_SUMMARY_ADMIN_LIST_MOBILE_NUMBERS}"
26                         emptyMessage="#{msg.ADMIN_EMPTY_LIST_CONTACT_MOBILE}"
27                         >
28                         <p:column>
29                                 <f:facet name="header">
30                                         <h:outputText value="#{msg.ADMIN_SHOW_MOBILE_ID}" />
31                                 </f:facet>
32                         </p:column>
33                 </p:dataTable>
34         </ui:define>
35 </ui:composition>