Mercurial > hg > ismi-richfaces
comparison src/main/webapp/entry/createEntity.xhtml @ 7:764f47286679
(none)
author | jurzua |
---|---|
date | Wed, 29 Oct 2014 14:28:34 +0000 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
6:ded3bccf2cf9 | 7:764f47286679 |
---|---|
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 | |
15 | |
16 <h:panelGrid columns="1" | |
17 rendered="#{Session.user != null}" | |
18 styleClass="mainPanel"> | |
19 | |
20 <ui:include src="components/dateEditorPopup.xhtml" /> | |
21 | |
22 | |
23 <rich:tabPanel | |
24 id="tp" | |
25 activeItem="#{Session.selectedTab}" | |
26 itemChangeListener="#{Session.listenerEntityTabChange}"> | |
27 | |
28 | |
29 <rich:tab header="Witness" name="Witness"> | |
30 <ui:include src="witness.xhtml" /> | |
31 </rich:tab> | |
32 <rich:tab header="Codex" name="Codex"> | |
33 <ui:include src="codex.xhtml" /> | |
34 </rich:tab> | |
35 <rich:tab header="Collection" name="Collection"> | |
36 <ui:include src="collection.xhtml" /> | |
37 </rich:tab> | |
38 <rich:tab header="Repository" name="Repository"> | |
39 <ui:include src="repository.xhtml" /> | |
40 </rich:tab> | |
41 <rich:tab header="Place" name="Place"> | |
42 <ui:include src="place.xhtml" /> | |
43 </rich:tab> | |
44 <rich:tab header="Text" name="Text"> | |
45 <ui:include src="text.xhtml" /> | |
46 </rich:tab> | |
47 <rich:tab header="Person" name="Person"> | |
48 <ui:include src="person.xhtml" /> | |
49 </rich:tab> | |
50 <rich:tab header="Alias" name="Alias"> | |
51 <ui:include src="alias.xhtml" /> | |
52 </rich:tab> | |
53 <rich:tab header="Subject" name="Subject"> | |
54 <ui:include src="subject.xhtml" /> | |
55 </rich:tab> | |
56 <rich:tab header="Role" name="Role"> | |
57 <ui:include src="role.xhtml" /> | |
58 </rich:tab> | |
59 <rich:tab header="Digi" name="Digi"> | |
60 <ui:include src="digi.xhtml" /> | |
61 </rich:tab> | |
62 </rich:tabPanel> | |
63 | |
64 <h:panelGroup> | |
65 Last ID loaded: <h:inputText | |
66 value="#{Session.editFormCurrentEntId}" /> | |
67 </h:panelGroup> | |
68 | |
69 </h:panelGrid> | |
70 | |
71 </ui:define> | |
72 </ui:composition> | |
73 </body> | |
74 </html> | |
75 |