]> git.mxchange.org Git - addressbook-war.git/blob - web/login/login_start_sharing_addressbook.xhtml
Double id fixed
[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                                                 <c:set value="#{user}" target="#{profileController}" property="user" />
28
29                                                 <h:column>
30                                                         <f:facet name="header">#{msg.USER_ID}</f:facet>
31                                                         <h:outputText value="#{user.userId}" />
32                                                 </h:column>
33
34                                                 <h:column>
35                                                         <f:facet name="header">#{msg.USER_NAME}</f:facet>
36                                                         <ui:include src="/WEB-INF/templates/generic/user_profile_link.tpl" />
37                                                 </h:column>
38
39                                                 <h:column>
40                                                         <f:facet name="header">#{msg.LOGIN_START_SHARING_TITLE}</f:facet>
41                                                         <h:form acceptcharset="utf-8" id="startSharing" rendered="#{profileController.isProfileLinkVisibleByUser(user)}">
42                                                                 <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}" />
43                                                         </h:form>
44                                                 </h:column>
45                                         </h:dataTable>
46
47                                         <h:outputText id="addressbokUnset" class="notice" value="#{msg.LOGIN_ADDRESSBOOK_NOT_SET}" rendered="#{empty addressbookController.addressbook}" />
48
49                                         <h:outputText id="ownProfileInvisible" class="notice" value="#{msg.LOGIN_OWN_PROFILE_INVISIBLE}" rendered="#{loginController.isUserLoggedIn() and not empty addressbookController.addressbook and not loginController.isInvisible()}" />
50                                 </div>
51
52                                 <div class="table_footer">
53                                         <ul>
54                                                 <li>#{msg.LOGIN_START_SHARING_NOTICE1}</li>
55                                                 <li>#{msg.LOGIN_START_SHARING_NOTICE2}</li>
56                                         </ul>
57                                 </div>
58                         </div>
59                 </ui:define>
60         </ui:composition>
61 </html>