diff options
author | Frederick Muriuki Muriithi | 2024-01-18 05:52:52 +0300 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-01-18 06:05:51 +0300 |
commit | cf8d133b110d87aed5cb6695711616625a6669fd (patch) | |
tree | 2723f88cd1c1cd5b6c763c7030209d18975acffb /qc_app/templates/rqtl2/create-probe-study-success.html | |
parent | 33e106334a212853842c30f8c595da1099c3d84e (diff) | |
download | gn-uploader-cf8d133b110d87aed5cb6695711616625a6669fd.tar.gz |
Create new ProbeSet study.
Diffstat (limited to 'qc_app/templates/rqtl2/create-probe-study-success.html')
-rw-r--r-- | qc_app/templates/rqtl2/create-probe-study-success.html | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/qc_app/templates/rqtl2/create-probe-study-success.html b/qc_app/templates/rqtl2/create-probe-study-success.html new file mode 100644 index 0000000..1b85d0c --- /dev/null +++ b/qc_app/templates/rqtl2/create-probe-study-success.html @@ -0,0 +1,53 @@ +{%extends "base.html"%} +{%from "flash_messages.html" import flash_messages%} + +{%block title%}Upload R/qtl2 Bundle{%endblock%} + +{%block contents%} +<h2 class="heading">Create ProbeSet Study</h2> + +<div class="explainer"> + <p>You successfully created the ProbeSet study with the following + information. + <dl> + <dt>ID</dt> + <dd>{{study.id}}</dd> + + <dt>Name</dt> + <dd>{{study.name}}</dd> + + <dt>Full Name</dt> + <dd>{{study.fname}}</dd> + + <dt>Short Name</dt> + <dd>{{study.sname}}</dd> + + <dt>Created On</dt> + <dd>{{study.today}}</dd> + </dl> + </p> +</div> + +<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">Create ProbeSet study</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="{{study.studyid}}" /> + + <fieldset> + <input type="submit" + value="continue" + class="btn btn-main form-col-2" /> + </fieldset> +</form> + +{%endblock%} |