Added UI (JSF) and JPA to bayesian network entities.
[simdecs.git] / web / bn / answer / View.xhtml
diff --git a/web/bn/answer/View.xhtml b/web/bn/answer/View.xhtml
new file mode 100644 (file)
index 0000000..119c531
--- /dev/null
@@ -0,0 +1,44 @@
+<?xml version="1.0" encoding="UTF-8" ?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+      xmlns:ui="http://java.sun.com/jsf/facelets"
+      xmlns:h="http://java.sun.com/jsf/html"
+      xmlns:f="http://java.sun.com/jsf/core">
+
+    <ui:composition template="/template.xhtml">
+        <ui:define name="title">
+            <h:outputText value="#{bundle.ViewAnswerTitle}"></h:outputText>
+        </ui:define>
+        <ui:define name="body">
+            <h:panelGroup id="messagePanel" layout="block">
+                <h:messages errorStyle="color: red" infoStyle="color: green" layout="table"/>
+            </h:panelGroup>
+            <h:form>
+                <h:panelGrid columns="2">
+                    <h:outputText value="#{bundle.ViewAnswerLabel_id}"/>
+                    <h:outputText value="#{answerController.selected.id}" title="#{bundle.ViewAnswerTitle_id}"/>
+                    <h:outputText value="#{bundle.ViewAnswerLabel_text}"/>
+                    <h:outputText value="#{answerController.selected.text}" title="#{bundle.ViewAnswerTitle_text}"/>
+                    <h:outputText value="#{bundle.ViewAnswerLabel_likelihood}"/>
+                    <h:outputText value="#{answerController.selected.likelihood}" title="#{bundle.ViewAnswerTitle_likelihood}"/>
+                    <h:outputText value="#{bundle.ViewAnswerLabel_question}"/>
+                    <h:outputText value="#{answerController.selected.question}" title="#{bundle.ViewAnswerTitle_question}"/>
+                </h:panelGrid>
+                <br />
+                <h:commandLink action="#{answerController.destroyAndView}" value="#{bundle.ViewAnswerDestroyLink}"/>
+                <br />
+                <br />
+                <h:commandLink action="Edit" value="#{bundle.ViewAnswerEditLink}"/>
+                <br />
+                <h:commandLink action="#{answerController.prepareCreate}" value="#{bundle.ViewAnswerCreateLink}" />
+                <br />
+                <h:commandLink action="#{answerController.prepareList}" value="#{bundle.ViewAnswerShowAllLink}"/>
+                <br />
+                <br />
+                <h:commandLink value="#{bundle.ViewAnswerIndexLink}" action="/index" immediate="true" />
+
+            </h:form>
+        </ui:define>
+    </ui:composition>
+
+</html>