about summary refs log tree commit diff
path: root/qc_app/templates/rqtl2/summary-info.html
diff options
context:
space:
mode:
Diffstat (limited to 'qc_app/templates/rqtl2/summary-info.html')
-rw-r--r--qc_app/templates/rqtl2/summary-info.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/qc_app/templates/rqtl2/summary-info.html b/qc_app/templates/rqtl2/summary-info.html
index c3a2ac0..3882c9c 100644
--- a/qc_app/templates/rqtl2/summary-info.html
+++ b/qc_app/templates/rqtl2/summary-info.html
@@ -21,6 +21,34 @@
 
   <dt>Genotype Dataset</dt>
   <dd>{{geno_dataset.Name}} ({{geno_dataset.FullName}})</dd>
+
+  <dt>ProbeSet Study</dt>
+  <dd>{{probe_study.Name}} ({{probe_study.FullName}})</dd>
+
+  <dt>ProbeSet Dataset</dt>
+  <dd>{{probe_dataset.Name2}} ({{probe_dataset.FullName}})</dd>
 </dl>
 
+<form id="frm:confirm-rqtl2bundle-details"
+      action="{{url_for('upload.rqtl2.confirm_bundle_details',
+	      species_id=species.SpeciesId,
+	      population_id=population.InbredSetId)}}"
+      method="POST"
+      enctype="multipart/form-data">
+  <legend class="heading">Create ProbeSet dataset</legend>
+
+  <input type="hidden" name="species_id" value="{{species.SpeciesId}}" />
+  <input type="hidden" name="population_id"
+	 value="{{population.InbredSetId}}" />
+  <input type="hidden" name="rqtl2_bundle_file" value="{{rqtl2_bundle_file}}" />
+  <input type="hidden" name="geno-dataset-id" value="{{geno_dataset.Id}}" />
+  <input type="hidden" name="probe-study-id" value="{{probe_study.Id}}" />
+  <input type="hidden" name="probe-dataset-id" value="{{probe_dataset.Id}}" />
+
+  <fieldset>
+    <input type="submit"
+	   value="continue"
+	   class="btn btn-main form-col-2" />
+  </fieldset>
+</form>
 {%endblock%}