aboutsummaryrefslogtreecommitdiff
path: root/qc_app/templates/rqtl2/rqtl2-qc-job-success.html
blob: d492898a3b5e56953c31fa5cad2981046c901f4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
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="explainer">
  <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.
  -->
<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">
  {{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}}" />

  <fieldset>
    <input type="submit" value="continue" class="btn btn-primary form-col-2" />
  </fieldset>
</form>

{%endblock%}