7
|
1 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
2 <html xmlns="http://www.w3.org/1999/xhtml"
|
|
3 xmlns:h="http://java.sun.com/jsf/html"
|
|
4 xmlns:f="http://java.sun.com/jsf/core"
|
|
5 xmlns:ui="http://java.sun.com/jsf/facelets"
|
|
6 xmlns:a4j="http://richfaces.org/a4j"
|
|
7 xmlns:rich="http://richfaces.org/rich">
|
|
8
|
|
9 <body>
|
|
10 <ui:composition template="/templates/privateTemplate.xhtml">
|
|
11
|
|
12 <ui:define name="privateContent">
|
|
13
|
|
14 <h:panelGrid columns="1"
|
|
15 rendered="#{Session.user != null}"
|
|
16 styleClass="mainPanel">
|
|
17
|
|
18 <rich:tabPanel id="tpEvents"
|
|
19 activeItem="#{Session.selectedEventTab}"
|
|
20 itemChangeListener="#{Session.listenerEventTabChange}">
|
|
21
|
|
22 <rich:tab header="Study" name="Study">
|
|
23 <ui:include src="studyEvent.xhtml" />
|
|
24 </rich:tab>
|
|
25
|
|
26 <rich:tab header="Copy" name="Copy">
|
|
27 <ui:include src="copyEvent.xhtml" />
|
|
28 </rich:tab>
|
|
29
|
|
30 <rich:tab header="Transfer" name="Transfer">
|
|
31 <ui:include src="transferEvent.xhtml" />
|
|
32 </rich:tab>
|
|
33
|
|
34 </rich:tabPanel>
|
|
35 </h:panelGrid>
|
|
36 </ui:define>
|
|
37 </ui:composition>
|
|
38 </body>
|
|
39
|
|
40 </html>
|