%@ page import="org.dbnp.gdt.GdtService" %>
Choose your Excel file to import: |
|
|
Choose type of sample template:
|
<% /* The select is written manually, since the grails select tag can't handle option titles */ %> |
<%
def sampleTemplate = sampleForm?.template?.Sample ?: templates.Sample?.getAt(0)
def sampleTemplateDescription = sampleTemplate?.description
%>
style="display: none;">
${sampleTemplateDescription?.encodeAsHTML()}
|
Choose type of subject template:
|
<% /* The select is written manually, since the grails select tag can't handle option titles */ %> |
<%
def subjectTemplateDescription = sampleForm?.template?.Subject?.description
%>
style="display: none;">
${subjectTemplateDescription?.encodeAsHTML()}
|
Choose type of event template:
|
<% /* The select is written manually, since the grails select tag can't handle option titles */ %> |
<%
def eventTemplateDescription = sampleForm?.template?.Event?.description
%>
style="display: none;">
${eventTemplateDescription?.encodeAsHTML()}
|
Choose type of sampling event template:
|
<% /* The select is written manually, since the grails select tag can't handle option titles */ %> |
<%
def samplingEventTemplateDescription = sampleForm?.template?.SamplingEvent?.description
%>
style="display: none;">
${samplingEventTemplateDescription?.encodeAsHTML()}
|