Added UI (JSF) and JPA to bayesian network entities.
[simdecs.git] / web / bn / question / View.xhtml
diff --git a/web/bn/question/View.xhtml b/web/bn/question/View.xhtml
new file mode 100644 (file)
index 0000000..a116cdf
--- /dev/null
@@ -0,0 +1,42 @@
+<?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.ViewQuestionTitle}"></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.ViewQuestionLabel_id}"/>
+                    <h:outputText value="#{questionController.selected.id}" title="#{bundle.ViewQuestionTitle_id}"/>
+                    <h:outputText value="#{bundle.ViewQuestionLabel_text}"/>
+                    <h:outputText value="#{questionController.selected.text}" title="#{bundle.ViewQuestionTitle_text}"/>
+                    <h:outputText value="#{bundle.ViewQuestionLabel_node}"/>
+                    <h:outputText value="#{questionController.selected.node}" title="#{bundle.ViewQuestionTitle_node}"/>
+                </h:panelGrid>
+                <br />
+                <h:commandLink action="#{questionController.destroyAndView}" value="#{bundle.ViewQuestionDestroyLink}"/>
+                <br />
+                <br />
+                <h:commandLink action="Edit" value="#{bundle.ViewQuestionEditLink}"/>
+                <br />
+                <h:commandLink action="#{questionController.prepareCreate}" value="#{bundle.ViewQuestionCreateLink}" />
+                <br />
+                <h:commandLink action="#{questionController.prepareList}" value="#{bundle.ViewQuestionShowAllLink}"/>
+                <br />
+                <br />
+                <h:commandLink value="#{bundle.ViewQuestionIndexLink}" action="/index" immediate="true" />
+
+            </h:form>
+        </ui:define>
+    </ui:composition>
+
+</html>