Added UI (JSF) and JPA to bayesian network entities.
[simdecs.git] / web / bn / answer / Create.xhtml
diff --git a/web/bn/answer/Create.xhtml b/web/bn/answer/Create.xhtml
new file mode 100644 (file)
index 0000000..90e700c
--- /dev/null
@@ -0,0 +1,41 @@
+<?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.CreateAnswerTitle}"></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:outputLabel value="#{bundle.CreateAnswerLabel_id}" for="id" />
+                    <h:inputText id="id" value="#{answerController.selected.id}" title="#{bundle.CreateAnswerTitle_id}" />
+                    <h:outputLabel value="#{bundle.CreateAnswerLabel_text}" for="text" />
+                    <h:inputText id="text" value="#{answerController.selected.text}" title="#{bundle.CreateAnswerTitle_text}" />
+                    <h:outputLabel value="#{bundle.CreateAnswerLabel_likelihood}" for="likelihood" />
+                    <h:inputText id="likelihood" value="#{answerController.selected.likelihood}" title="#{bundle.CreateAnswerTitle_likelihood}" />
+                    <h:outputLabel value="#{bundle.CreateAnswerLabel_question}" for="question" />
+                    <h:selectOneMenu id="question" value="#{answerController.selected.question}" title="#{bundle.CreateAnswerTitle_question}" >
+                        <f:selectItems value="#{questionController.itemsAvailableSelectOne}"/>
+                    </h:selectOneMenu>
+                </h:panelGrid>
+                <br />
+                <h:commandLink action="#{answerController.create}" value="#{bundle.CreateAnswerSaveLink}" />
+                <br />
+                <br />
+                <h:commandLink action="#{answerController.prepareList}" value="#{bundle.CreateAnswerShowAllLink}" immediate="true"/>
+                <br />
+                <br />
+                <h:commandLink value="#{bundle.CreateAnswerIndexLink}" action="/index" immediate="true" />
+            </h:form>
+        </ui:define>
+    </ui:composition>
+
+</html>