comparison src/main/webapp/clean/missingRelations.xhtml @ 180:0d31c8be7c31

new MissingRelations feature and UI. including searchByRelations() with Filter in FullEntityRepositoryBean.
author Robert Casties <casties@mpiwg-berlin.mpg.de>
date Wed, 13 Jun 2018 14:57:13 +0200
parents
children 52aa06772336
comparison
equal deleted inserted replaced
179:c9dec00f0f17 180:0d31c8be7c31
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 <h:outputStylesheet name="/css/ismi-db/repository.css" />
13
14 <ui:define name="privateContent">
15
16 <div id="pageTitle">
17 <h:outputText value="Find Missing Relations" />
18 </div>
19
20 <h:panelGrid columns="1" styleClass="mainPanel">
21
22 <rich:tabPanel id="tabPanel"
23 itemChangeListener="#{Session.listenerMissingRelationsTabChange}"
24 activeItem="#{Session.selectedMissingRelationsTab}">
25
26 <rich:tab header="Missing Author" name="aut">
27 <ui:include src="components/missingAuthor.xhtml" />
28 </rich:tab>
29
30 <rich:tab header="Missing Text" name="txt">
31 <ui:include src="components/missingText.xhtml" />
32 </rich:tab>
33
34 <rich:tab header="Missing Codex" name="cod">
35 <ui:include src="components/missingCodex.xhtml" />
36 </rich:tab>
37 </rich:tabPanel>
38
39 <a4j:commandButton value="reload all texts"
40 actionListener="#{Session.missingRelations.actionReset}"
41 render="mainPanel" />
42
43
44 </h:panelGrid>
45
46
47 </ui:define>
48 </ui:composition>
49
50 </body>
51 </html>