aboutsummaryrefslogtreecommitdiff
path: root/uploader/templates/rqtl2/create-geno-dataset-success.html
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-07-25 11:07:33 -0500
committerFrederick Muriuki Muriithi2024-07-25 14:34:09 -0500
commit754e8f214b940e05298cb360ed829f5c685d55a5 (patch)
tree62c2c5b601746621f0949b38937ad232f006dee2 /uploader/templates/rqtl2/create-geno-dataset-success.html
parentde9e1b9fe37928b864bea28b408de6c14d04526b (diff)
downloadgn-uploader-754e8f214b940e05298cb360ed829f5c685d55a5.tar.gz
Rename module: qc_app --> uploader
Diffstat (limited to 'uploader/templates/rqtl2/create-geno-dataset-success.html')
-rw-r--r--uploader/templates/rqtl2/create-geno-dataset-success.html55
1 files changed, 55 insertions, 0 deletions
diff --git a/uploader/templates/rqtl2/create-geno-dataset-success.html b/uploader/templates/rqtl2/create-geno-dataset-success.html
new file mode 100644
index 0000000..1b50221
--- /dev/null
+++ b/uploader/templates/rqtl2/create-geno-dataset-success.html
@@ -0,0 +1,55 @@
+{%extends "base.html"%}
+{%from "flash_messages.html" import flash_messages%}
+
+{%block title%}Upload R/qtl2 Bundle{%endblock%}
+
+{%block contents%}
+<h2 class="heading">Select Genotypes Dataset</h2>
+
+<div class="explainer">
+ <p>You successfully created the genotype dataset with the following
+ information.
+ <dl>
+ <dt>ID</dt>
+ <dd>{{geno_dataset.id}}</dd>
+
+ <dt>Name</dt>
+ <dd>{{geno_dataset.name}}</dd>
+
+ <dt>Full Name</dt>
+ <dd>{{geno_dataset.fname}}</dd>
+
+ <dt>Short Name</dt>
+ <dd>{{geno_dataset.sname}}</dd>
+
+ <dt>Created On</dt>
+ <dd>{{geno_dataset.today}}</dd>
+
+ <dt>Public?</dt>
+ <dd>{%if geno_dataset.public == 0%}No{%else%}Yes{%endif%}</dd>
+ </dl>
+ </p>
+</div>
+
+<div class="row">
+ <form id="frm-upload-rqtl2-bundle"
+ action="{{url_for('upload.rqtl2.select_dataset_info',
+ species_id=species.SpeciesId,
+ population_id=population.InbredSetId)}}"
+ method="POST"
+ enctype="multipart/form-data">
+ <legend class="heading">select from existing genotype datasets</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}}" />
+
+ <button type="submit" class="btn btn-primary">continue</button>
+ </form>
+</div>
+
+{%endblock%}