changeset 117:07e4eae9027f

add id display to event forms.
author casties
date Thu, 22 Dec 2016 16:56:36 +0100
parents ca36b24a22f7
children 579839a2e3e2
files src/main/webapp/events/copyEvent.xhtml src/main/webapp/events/studyEvent.xhtml src/main/webapp/events/transferEvent.xhtml
diffstat 3 files changed, 9 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/src/main/webapp/events/copyEvent.xhtml	Thu Dec 22 16:56:17 2016 +0100
+++ b/src/main/webapp/events/copyEvent.xhtml	Thu Dec 22 16:56:36 2016 +0100
@@ -16,6 +16,9 @@
 		<h:panelGrid columns="2" styleClass="createPanel"
 			columnClasses="createPanelFirstColumn">
 
+            <h:outputText value="ID" />
+            <h:outputText value="#{Session.copyEventForm.event.id}" />
+
 			<h:outputLabel value="Own value" />
 			<h:outputLabel value="#{Session.copyEventForm.event.ownValue}" />
 
--- a/src/main/webapp/events/studyEvent.xhtml	Thu Dec 22 16:56:17 2016 +0100
+++ b/src/main/webapp/events/studyEvent.xhtml	Thu Dec 22 16:56:36 2016 +0100
@@ -16,6 +16,9 @@
 		<h:panelGrid columns="2" styleClass="createPanel"
 			columnClasses="createPanelFirstColumn">
 
+            <h:outputText value="ID" />
+            <h:outputText value="#{Session.studyEventForm.event.id}" />
+
 			<h:outputLabel value="Own value" />
 			<h:outputLabel value="#{Session.studyEventForm.event.ownValue}" />
 
--- a/src/main/webapp/events/transferEvent.xhtml	Thu Dec 22 16:56:17 2016 +0100
+++ b/src/main/webapp/events/transferEvent.xhtml	Thu Dec 22 16:56:36 2016 +0100
@@ -16,6 +16,9 @@
 		<h:panelGrid columns="2" styleClass="createPanel"
 			columnClasses="createPanelFirstColumn">
 
+            <h:outputText value="ID" />
+            <h:outputText value="#{Session.transferEventForm.event.id}" />
+
 			<h:outputLabel value="Own value" />
 			<h:outputLabel value="#{Session.transferEventForm.event.ownValue}" />