1 <?xml version="1.0" encoding="UTF-8" ?>
3 template="/WEB-INF/templates/admin/admin_base.tpl"
4 xmlns="http://www.w3.org/1999/xhtml"
5 xmlns:core="http://mxchange.org/jsf/core/widgets"
6 xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
7 xmlns:h="http://xmlns.jcp.org/jsf/html"
8 xmlns:f="http://xmlns.jcp.org/jsf/core"
9 xmlns:p="http://primefaces.org/ui"
12 <ui:define name="document_admin_title">
13 <h:outputText value="#{msg.PAGE_TITLE_ADMIN_EXPORT_USER}" />
16 <ui:define name="content_header">
17 <h:outputText value="#{msg.CONTENT_TITLE_ADMIN_EXPORT_USER}" />
20 <ui:define name="content">
21 <h:form id="form-export-users">
23 id="table-export-users"
25 value="#{userListController.allUsers}"
28 summary="#{msg.TABLE_SUMMARY_ADMIN_EXPORT_USER}"
29 emptyMessage="#{msg.ADMIN_EMPTY_LIST_USER}"
31 <p:column exportable="false">
32 <f:facet name="header">
33 <h:outputText value="#{msg.ADMIN_EXPORT_USER_ID}" />
37 outcome="admin_show_user"
38 value="#{user.userId}"
39 title="#{msg.ADMIN_LINK_SHOW_USER_TITLE}"
41 <f:param name="userId" value="#{user.userId}" />
45 <ui:fragment rendered="#{featureController.isFeatureEnabled('user_login_require_user_name')}">
47 <f:facet name="header">
48 <h:outputText value="#{msg.ADMIN_EXPORT_USER_NAME_TITLE}" />
51 <h:outputText value="#{user.userName}" />
56 <f:facet name="header">
57 <h:outputText value="#{msg.ADMIN_EXPORT_USER_ACCOUNT_STATUS}" />
60 <h:outputText styleClass="#{user.userAccountStatus.styleClass}" value="#{msg[user.userAccountStatus.messageKey]}" />
64 <f:facet name="header">
65 <h:outputText value="#{msg.ADMIN_EXPORT_CONTACT_PERSONAL_TITLE}" />
68 <h:outputText value="#{msg[user.userContact.contactPersonalTitle.messageKey]}" />
72 <f:facet name="header">
73 <h:outputText value="#{msg.ADMIN_EXPORT_CONTACT_ACADEMIC_TITLE}" />
76 <h:outputText value="#{user.userContact.contactTitle}" />
80 <f:facet name="header">
81 <h:outputText value="#{msg.ADMIN_EXPORT_CONTACT_FIRST_NAME}" />
84 <h:outputText value="#{user.userContact.contactFirstName}" />
88 <f:facet name="header">
89 <h:outputText value="#{msg.ADMIN_EXPORT_CONTACT_FAMILY_NAME}" />
92 <h:outputText value="#{user.userContact.contactFamilyName}" />
96 <f:facet name="header">
97 <h:outputText value="#{msg.ADMIN_EXPORT_CONTACT_STREET}" />
100 <h:outputText value="#{user.userContact.contactStreet}" />
104 <f:facet name="header">
105 <h:outputText value="#{msg.ADMIN_EXPORT_CONTACT_HOUSE_NUMBER}" />
108 <h:outputText value="#{user.userContact.contactHouseNumber}#{user.userContact.contactHouseNumberExtension}" />
112 <f:facet name="header">
113 <h:outputText value="#{msg.ADMIN_EXPORT_CONTACT_COUNTRY_CODE}" />
116 <h:outputText value="#{user.userContact.contactCountry.countryCode}" />
120 <f:facet name="header">
121 <h:outputText value="#{msg.ADMIN_EXPORT_CONTACT_ZIP_CODE}" />
124 <h:outputText value="#{user.userContact.contactZipCode}" />
128 <f:facet name="header">
129 <h:outputText value="#{msg.ADMIN_EXPORT_CONTACT_CITY}" />
132 <h:outputText value="#{user.userContact.contactCity}" />
136 <f:facet name="header">
137 <h:outputText value="#{msg.ADMIN_EXPORT_CONTACT_EMAIL_ADDRESS}" />
140 <h:outputText value="#{user.userContact.contactEmailAddress}" />
144 <f:facet name="header">
145 <h:outputText value="#{msg.ADMIN_EXPORT_CONTACT_BIRTHDAY}" />
148 <h:outputText id="contactBirthday" value="#{user.userContact.contactBirthday}">
149 <f:convertDateTime type="date" dateStyle="medium" />
154 <f:facet name="header">
155 <h:outputText value="#{msg.ADMIN_EXPORT_CONTACT_MOBILE_NUMBER}" />
158 <h:outputText value="#{adminContactController.generateMobileNumber(user.userContact.contactMobileNumber)}" />
162 <f:facet name="header">
163 <h:outputText value="#{msg.ADMIN_EXPORT_CONTACT_LAND_LINE_NUMBER}" />
166 <h:outputText value="#{adminContactController.generatePhoneNumber(user.userContact.contactLandLineNumber)}" />
170 <f:facet name="header">
171 <h:outputText value="#{msg.ADMIN_EXPORT_CONTACT_FAX_NUMBER}" />
174 <h:outputText value="#{adminContactController.generatePhoneNumber(user.userContact.contactFaxNumber)}" />
178 <f:facet name="header">
179 <h:outputText value="#{msg.ADMIN_EXPORT_CONTACT_CREATED}" />
182 <h:outputText value="#{user.userContact.contactEntryCreated}">
187 locale="#{localizationController.locale}"
193 <f:facet name="header">
194 <h:outputText value="#{msg.ADMIN_EXPORT_CONTACT_UPDATED}" />
197 <h:outputText value="#{user.userContact.contactEntryUpdated}">
202 locale="#{localizationController.locale}"
208 <h:panelGroup layout="block">
209 <div class="table-header">
210 <h:outputText value="#{msg.ADMIN_EXPORT_USERS_TITLE}" />
214 <h:outputText value="#{msg.ADMIN_EXPORT_USERS_TIMEOUT_WARNING}" />
220 value="#{msg.BUTTON_ADMIN_EXPORT_USERS_XLS}"
225 target="table-export-users"