blob: 396f2418e923c986e4bcbbdb4544b7868c3d5ae9 (
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-main form-col-2" />
</fieldset>
</form>
{%endblock%}
|