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:outputStylesheet name="/css/ismi-db/display.css" />
|
|
15
|
|
16 <div id="pageTitle">
|
|
17 <h:outputText value="Public Codices" />
|
|
18 </div>
|
|
19
|
|
20 <h:panelGrid columns="1" styleClass="publicCodices">
|
|
21
|
|
22 <h:panelGroup>
|
|
23 <h:inputText
|
|
24 value="#{Session.publicCodexBean.term}"
|
|
25 style="width: 200px;"/>
|
|
26 <h:commandButton
|
|
27 value="Submit"
|
|
28 actionListener="#{Session.publicCodexBean.listenerSearch}"/>
|
|
29 <h:commandButton
|
|
30 value="Reset"
|
|
31 actionListener="#{Session.publicCodexBean.listenerReset}"/>
|
|
32 </h:panelGroup>
|
|
33
|
|
34 <rich:dataTable
|
|
35 value="#{Session.publicCodexBean.currentCodexList}"
|
|
36 var="codex">
|
|
37
|
|
38 <rich:column style="border:none;">
|
|
39 <h:outputLink value="#{ApplicationBean1.root}/public/publicCodexOverview.xhtml?eid=#{codex.id}">
|
|
40 <h:outputText value="#{codex.ownValue}"/>
|
|
41 </h:outputLink>
|
|
42
|
|
43 </rich:column>
|
|
44
|
|
45 </rich:dataTable>
|
|
46
|
|
47
|
|
48 </h:panelGrid>
|
|
49 </ui:define>
|
|
50 </ui:composition>
|
|
51 </body>
|
|
52 </html>
|