]> git.mxchange.org Git - jjobs-war.git/blob - web/guest/user/user_list.xhtml
Continued:
[jjobs-war.git] / web / guest / user / user_list.xhtml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3 <html
4         lang="#{localizationController.language}" xml:lang="#{localizationController.language}"
5         xmlns="http://www.w3.org/1999/xhtml"
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
10         <ui:composition template="/WEB-INF/templates/#{userLoginController.templateType}/#{userLoginController.templateType}_base.tpl">
11                 <ui:define name="login_title">#{msg.PAGE_TITLE_USER_LIST}</ui:define>
12
13                 <ui:define name="content_header">
14                         #{msg.CONTENT_TITLE_USER_LIST}
15                 </ui:define>
16
17                 <ui:define name="content">
18                         <div class="table_big">
19                                 <div class="table_header">
20                                         #{msg.TABLE_HEADER_USER_LIST}
21                                 </div>
22
23                                 <h:dataTable id="userList" var="user" value="#{userController.allVisibleUsers()}" headerClass="table_header_column25" summary="#{msg.TABLE_SUMMARY_USER_LIST}" rendered="#{userController.isVisibleUserFound()}">
24                                         <h:column>
25                                                 <f:facet name="header">#{msg.USER_NAME}</f:facet>
26                                                 <ui:include src="/WEB-INF/templates/user/user_profile_link.tpl">
27                                                         <ui:param name="user" value="#{user}" />
28                                                 </ui:include>
29                                         </h:column>
30
31                                         <h:column>
32                                                 <f:facet name="header">#{msg.USER_CREATED}</f:facet>
33                                                 <h:outputFormat id="userCreated" value="#{user.userCreated.time}" title="#{msg.USER_CREATED_TITLE}" />
34                                         </h:column>
35                                 </h:dataTable>
36                         </div>
37                 </ui:define>
38         </ui:composition>
39 </html>