aboutsummaryrefslogtreecommitdiff
path: root/qc_app/templates/select_platform.html
blob: f8db7364660d6db038c392835089f8f05cc2dd0d (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{%extends "base.html"%}

{%block title%}Select Dataset{%endblock%}

{%block contents%}
<h1 class="heading">{{filename}}: select platform</h2>

<form method="POST" action="{{url_for('dbinsert.select_study')}}"
      id="select-platform-form" data-genechips="{{genechips_data}}">
  <input type="hidden" name="filename" value="{{filename}}" />
  <input type="hidden" name="filetype" value="{{filetype}}" />

  <fieldset>
    <label for="species" class="form-col-1">species</label>
    <select id="species" name="species" class="form-col-2">
      {%for row in species:%}
      <option value="{{row['SpeciesId']}}"
	      {%if row["Name"] == default_species:%}
	      selected="selected"
	      {%endif%}>
	{{row["MenuName"]}}
      </option>
      {%endfor%}
    </select>
  </fieldset>

  <table id="genechips-table">
    <thead>
      <tr>
	<th>Select</th>
	<th>GeneChip Name</th>
	<th>Name</th>
	<th>GeoPlatform</th>
	<th>GO Tree Value</th>
      </tr>
    </thead>

    <tbody>
      {%for chip in genechips:%}
      <tr>
	<td>
	  <input type="radio" name="genechipid" value="{{chip['GeneChipId']}}"
		 required="required" />
	</td>
	<td>{{chip["GeneChipName"]}}</td>
	<td>{{chip["Name"]}}</td>
	<td>{{chip["GeoPlatform"]}}</td>
	<td>{{chip["GO_tree_value"]}}</td>
      </tr>
      {%else%}
      <tr>
	<td colspan="5">No chips found for selected species</td>
      </tr>
      {%endfor%}
    </tbody>
  </table>

  <fieldset>
    <input type="submit" class="btn btn-main form-col-2"
	   value="submit platform" />
  </fieldset>
</form>
{%endblock%}

{%block javascript%}
<script type="text/javascript" src="/static/js/utils.js"></script>
<script type="text/javascript" src="/static/js/select_platform.js"></script>
<script type="text/javascript">
  document.getElementById(
      "species").addEventListener("change", update_genechips);
</script>
{%endblock%}