From 433df84d837b73b1d19af0ed9300e0f5baa65da3 Mon Sep 17 00:00:00 2001
From: Roland Haeder <roland@mxchange.org>
Date: Wed, 14 Oct 2015 15:08:56 +0200
Subject: [PATCH] =?utf8?q?don't=20miss=20h:column!=20Signed-off-by:Roland?=
 =?utf8?q?=20H=C3=A4der=20<roland@mxchange.org>?=
MIME-Version: 1.0
Content-Type: text/plain; charset=utf8
Content-Transfer-Encoding: 8bit

---
 web/login/login_user_list.xhtml | 40 ++++++++++++++++++++-------------
 1 file changed, 24 insertions(+), 16 deletions(-)

diff --git a/web/login/login_user_list.xhtml b/web/login/login_user_list.xhtml
index 134990f6..8c53529f 100644
--- a/web/login/login_user_list.xhtml
+++ b/web/login/login_user_list.xhtml
@@ -20,25 +20,33 @@
 				</div>
 
 				<h:dataTable id="userList" var="user" value="#{userController.allPublicUsers()}" headerClass="table_header_column25" summary="#{msg.TABLE_SUMMARY_LOGIN_USER_LIST}" rendered="#{userController.isPublicUserRegistered()}">
-					<f:facet name="header">#{msg.USER_ID}</f:facet>
-					<h:link outcome="login_user_profile" value="#{user.userId}">
-						<f:param name="profile" value="#{user.userId}" />
-					</h:link>
+					<h:column>
+						<f:facet name="header">#{msg.USER_ID}</f:facet>
+						<h:link outcome="login_user_profile" value="#{user.userId}">
+							<f:param name="profile" value="#{user.userId}" />
+						</h:link>
+					</h:column>
 
-					<f:facet name="header">#{msg.USER_NAME}</f:facet>
-					<h:link outcome="login_user_profile" value="#{user.userName}">
-						<f:param name="profile" value="#{user.userId}" />
-					</h:link>
+					<h:column>
+						<f:facet name="header">#{msg.USER_NAME}</f:facet>
+						<h:link outcome="login_user_profile" value="#{user.userName}">
+							<f:param name="profile" value="#{user.userId}" />
+						</h:link>
+					</h:column>
 
-					<f:facet name="header">#{msg.USER_CREATED}</f:facet>
-					<h:outputFormat id="userCreated" value="#{user.userCreated.time}" title="#{msg.USER_CREATED_TITLE}">
-						<f:convertDateTime for="addressbookCreated" type="both" timeStyle="short" dateStyle="medium" />
-					</h:outputFormat>
+					<h:column>
+						<f:facet name="header">#{msg.USER_CREATED}</f:facet>
+						<h:outputFormat id="userCreated" value="#{user.userCreated.time}" title="#{msg.USER_CREATED_TITLE}">
+							<f:convertDateTime for="addressbookCreated" type="both" timeStyle="short" dateStyle="medium" />
+						</h:outputFormat>
+					</h:column>
 
-					<f:facet name="header">#{msg.USER_LIST_SHARING_ADDRESSBOOKS}</f:facet>
-					<h:link outcome="login_list_sharing_addressbooks" value="#{msg.LINK_LOGIN_LIST_SHARING_ADDRESSBOOKS}" title="#{msg.LINK_LOGIN_LIST_SHARING_ADDRESSBOOKS_TITLE}">
-						<f:param name="profile" value="#{user.userId}" />
-					</h:link>
+					<h:column>
+						<f:facet name="header">#{msg.USER_LIST_SHARING_ADDRESSBOOKS}</f:facet>
+						<h:link outcome="login_list_sharing_addressbooks" value="#{msg.LINK_LOGIN_LIST_SHARING_ADDRESSBOOKS}" title="#{msg.LINK_LOGIN_LIST_SHARING_ADDRESSBOOKS_TITLE}">
+							<f:param name="profile" value="#{user.userId}" />
+						</h:link>
+					</h:column>
 				</h:dataTable>
 			</div>
 		</ui:define>
-- 
2.39.5