]> git.mxchange.org Git - addressbook-war.git/blob - web/login/login_start_sharing_addressbook.xhtml
As converters and validators cannot fire events, the controller has to load the objec...
[addressbook-war.git] / web / login / login_start_sharing_addressbook.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 xmlns="http://www.w3.org/1999/xhtml"
4           xmlns:ui="http://java.sun.com/jsf/facelets"
5           xmlns:h="http://xmlns.jcp.org/jsf/html"
6           xmlns:f="http://xmlns.jcp.org/jsf/core"
7           xmlns:c="http://xmlns.jcp.org/jsp/jstl/core">
8
9         <ui:composition template="/WEB-INF/templates/#{loginController.templateType}/#{loginController.templateType}_base.tpl">
10                 <ui:define name="login_title">#{msg.PAGE_TITLE_LOGIN_START_SHARING_ADDRESSBOOK}</ui:define>
11
12                 <ui:define name="content_header">
13                         #{msg.CONTENT_TITLE_LOGIN_START_SHARING_ADDRESSBOOK}
14                 </ui:define>
15
16                 <ui:define name="content">
17                         <div class="table_big">
18
19                                 <div class="table_header">
20                                         #{msg.TABLE_HEADER_CHOOSE_USER_FOR_SHARING}
21                                 </div>
22
23                                 <div class="para">
24                                         <h:outputText id="userNotLoggedIn" class="notice" value="#{msg.USER_NOT_LOGGED_IN}" rendered="#{not loginController.isUserLoggedIn()}" />
25
26                                         <h:dataTable id="userList" headerClass="table_header_column" var="user" value="#{addressbookController.allUsersNotSharing()}" rendered="#{loginController.isUserLoggedIn() and not empty addressbookController.addressbook and not loginController.isInvisible()}">
27
28                                                 <h:column>
29                                                         <f:facet name="header">#{msg.USER_ID}</f:facet>
30                                                         <h:outputText value="#{user.userId}" />
31                                                 </h:column>
32
33                                                 <h:column>
34                                                         <f:facet name="header">#{msg.USER_NAME}</f:facet>
35                                                         <ui:include src="/WEB-INF/templates/generic/user_profile_link.tpl">
36                                                                 <ui:param name="user" value="#{user}" />
37                                                         </ui:include>
38                                                 </h:column>
39
40                                                 <h:column>
41                                                         <f:facet name="header">#{msg.LOGIN_START_SHARING_TITLE}</f:facet>
42                                                         <h:form acceptcharset="utf-8" id="startSharing" rendered="#{profileController.isProfileLinkVisibleByUser(user)}">
43                                                                 <h:commandButton class="submit" id="submit" value="#{msg.LOGIN_START_SHARING_BUTTON}" action="#{shareController.startSharing(user, addressbookController.addressbook)}" title="#{msg.LOGIN_START_SHARING_BUTTON_TITLE}" />
44                                                         </h:form>
45                                                 </h:column>
46                                         </h:dataTable>
47
48                                         <h:outputText id="addressbokUnset" class="notice" value="#{msg.LOGIN_ADDRESSBOOK_NOT_SET}" rendered="#{empty addressbookController.addressbook}" />
49
50                                         <h:outputText id="ownProfileInvisible" class="notice" value="#{msg.LOGIN_OWN_PROFILE_INVISIBLE}" rendered="#{loginController.isUserLoggedIn() and not empty addressbookController.addressbook and not loginController.isInvisible()}" />
51                                 </div>
52
53                                 <div class="table_footer">
54                                         <ul>
55                                                 <li>#{msg.LOGIN_START_SHARING_NOTICE1}</li>
56                                                 <li>#{msg.LOGIN_START_SHARING_NOTICE2}</li>
57                                         </ul>
58                                 </div>
59                         </div>
60                 </ui:define>
61         </ui:composition>
62 </html>