diff options
author | Frederick Muriuki Muriithi | 2024-09-23 14:30:15 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-09-23 16:35:39 -0500 |
commit | 4285cc10e24d6410206329ba079406e9aa21cc30 (patch) | |
tree | 70f785460b14731634d0a4bd93ad5bbb9c5ba833 /uploader/templates/populations/rqtl2/rqtl2-qc-job-success.html | |
parent | 0b37b9b3fa4fead86787a705713645fa14530a54 (diff) | |
download | gn-uploader-4285cc10e24d6410206329ba079406e9aa21cc30.tar.gz |
Move R/qtl2 upload code under the populations package.
Diffstat (limited to 'uploader/templates/populations/rqtl2/rqtl2-qc-job-success.html')
-rw-r--r-- | uploader/templates/populations/rqtl2/rqtl2-qc-job-success.html | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/uploader/templates/populations/rqtl2/rqtl2-qc-job-success.html b/uploader/templates/populations/rqtl2/rqtl2-qc-job-success.html new file mode 100644 index 0000000..f126835 --- /dev/null +++ b/uploader/templates/populations/rqtl2/rqtl2-qc-job-success.html @@ -0,0 +1,37 @@ +{%extends "base.html"%} +{%from "flash_messages.html" import flash_all_messages%} + +{%block title%}R/qtl2 Bundle: Quality Control Successful{%endblock%} + +{%block contents%} +<h2 class="heading">R/qtl2 Bundle: Quality Control Successful</h2> + +<div class="row"> + <p>The R/qtl2 bundle you uploaded has passed <emph>all</emph> quality control + checks successfully, and is now ready for uploading into the database.</p> + <p>Click "Continue" below to proceed.</p> +</div> + +<!-- + The "action" on this form takes us to the next step, where we can + select all the other data necessary to enter the data into the database. + --> +<div class="row"> + <form id="frm-upload-rqtl2-bundle" + action="{{url_for('expression-data.rqtl2.select_dataset_info', + species_id=species.SpeciesId, + population_id=population.InbredSetId)}}" + method="POST" + enctype="multipart/form-data"> + {{flash_all_messages()}} + <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}}" /> + + <button type="submit" class="btn btn-primary">continue</button> + </form> +</div> + +{%endblock%} |