aboutsummaryrefslogtreecommitdiff
path: root/qc_app/templates/rqtl2/create-probe-study-success.html
blob: d0ee508b8d4cf8bb24a3af2cfd52126d11fe55c5 (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
38
39
40
41
42
43
44
45
46
47
48
49
{%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="row">
  <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>

  <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}}" />

    <button type="submit" class="btn btn-primary">continue</button>
  </form>
</div>

{%endblock%}