]> git.mxchange.org Git - jjobs-war.git/blob - web/admin/user/admin_user_show.xhtml
Please cherry-pick:
[jjobs-war.git] / web / admin / user / admin_user_show.xhtml
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
2 <html
3         lang="#{localizationController.language}" xml:lang="#{localizationController.language}"
4         xmlns="http://www.w3.org/1999/xhtml"
5         xmlns:ui="http://xmlns.jcp.org/jsf/facelets"
6         xmlns:h="http://xmlns.jcp.org/jsf/html"
7         xmlns:f="http://xmlns.jcp.org/jsf/core"
8         >
9
10         <ui:composition template="/WEB-INF/templates/admin/admin_base.tpl">
11                 <ui:define name="metadata">
12                         <f:metadata>
13                                 <f:viewParam name="userId" value="#{beanHelper.user}" converter="UserConverter" required="true" requiredMessage="#{msg.ERROR_PARAMETER_USER_ID_NOT_SET}" />
14                                 <f:viewAction onPostback="true" action="#{beanHelper.copyUserToController()}" />
15                         </f:metadata>
16                 </ui:define>
17
18                 <ui:define name="admin_title">#{msg.PAGE_TITLE_ADMIN_SHOW_USER}</ui:define>
19
20                 <ui:define name="content_header">
21                         #{msg.CONTENT_TITLE_ADMIN_SHOW_USER}
22                 </ui:define>
23
24                 <ui:define name="content">
25                         <h:outputText styleClass="errors" value="#{msg.ERROR_USER_ID_NOT_FOUND}" rendered="#{empty beanHelper.user}" />
26
27                         <ui:include src="/WEB-INF/templates/admin/user/admin_show_user_data.tpl" />
28
29                         <div class="para">
30                                 <ui:include src="/WEB-INF/templates/admin/user/admin_user_links.tpl" />
31                         </div>
32
33                         <div class="para">
34                                 <ui:include src="/WEB-INF/templates/admin/landline/admin_landline_add_show.tpl" />
35                         </div>
36
37                         <div class="para">
38                                 <ui:include src="/WEB-INF/templates/admin/mobile/admin_mobile_add_show.tpl" />
39                         </div>
40
41                         <div class="para">
42                                 <ui:include src="/WEB-INF/templates/admin/fax/admin_fax_add_show.tpl" />
43                         </div>
44                 </ui:define>
45         </ui:composition>
46 </html>