Movie.xhtml
1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
<!DOCTYPE composition PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<ui:composition xmlns="http://www.w3.org/1999/xhtml"
xmlns:s="http://jboss.com/products/seam/taglib"
xmlns:ui="http://java.sun.com/jsf/facelets"
xmlns:f="http://java.sun.com/jsf/core"
xmlns:h="http://java.sun.com/jsf/html"
xmlns:rich="http://richfaces.org/rich"
template="/layout/template.xhtml">
<ui:define name="body">
<rich:panel>
<f:facet name="header">Movie Details</f:facet>
<s:decorate id="director" template="/layout/display.xhtml">
<ui:define name="label">Director</ui:define>
<h:outputText value="#{movieHome.instance.director}"/>
</s:decorate>
<s:decorate id="title" template="/layout/display.xhtml">
<ui:define name="label">Title</ui:define>
<h:outputText value="#{movieHome.instance.title}"/>
</s:decorate>
<s:decorate id="year" template="/layout/display.xhtml">
<ui:define name="label">Year</ui:define>
<h:outputText value="#{movieHome.instance.year}"/>
</s:decorate>
<s:decorate id="plot" template="/layout/display.xhtml">
<ui:define name="label">Plot</ui:define>
<h:outputText value="#{movieHome.instance.plot}"/>
</s:decorate>
<div style="clear:both"/>
</rich:panel>
<div class="actionButtons">
<s:button view="/view/example/MovieEdit.xhtml"
id="edit"
value="Edit"/>
<s:button view="/view/example/#{empty movieFrom ? 'MovieList' : movieFrom}.xhtml"
id="done"
value="Done"/>
</div>
</ui:define>
</ui:composition>