diff options
author | Frederick Muriuki Muriithi | 2025-05-05 13:45:45 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2025-05-05 16:20:10 -0500 |
commit | 5e5ac256740e7e0e44e09111b9015c2960fb4fa3 (patch) | |
tree | 0f73742d027825efedfbf52d3d740b31521d4238 /uploader/templates | |
parent | db018a349d812df6432cc73320e18f3db5e1dccd (diff) | |
download | gn-uploader-5e5ac256740e7e0e44e09111b9015c2960fb4fa3.tar.gz |
Provide endpoint for loading data after QC is successful.
Diffstat (limited to 'uploader/templates')
-rw-r--r-- | uploader/templates/phenotypes/review-job-data.html | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/uploader/templates/phenotypes/review-job-data.html b/uploader/templates/phenotypes/review-job-data.html index befb5e2..1343c19 100644 --- a/uploader/templates/phenotypes/review-job-data.html +++ b/uploader/templates/phenotypes/review-job-data.html @@ -68,7 +68,17 @@ {%endfor%} </ul> - <a href="#" class="not-implemented btn btn-primary">continue</a> + <form id="frm-review-phenotype-data" + method="POST" + action="{{url_for('species.populations.phenotypes.load_data_to_database', + species_id=species.SpeciesId, + population_id=population.Id, + dataset_id=dataset.Id)}}"> + <input type="hidden" name="data-qc-job-id" value="{{job.jobid}}" /> + <input type="submit" + value="continue" + class="btn btn-primary" /> + </form> </div> {%else%} <div class="row"> |