about summary refs log tree commit diff
path: root/uploader/templates/genotypes/view-dataset.html
blob: d95a8e38b0de24c9398bc20892d49408f2e63e60 (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
{%extends "genotypes/base.html"%}
{%from "flash_messages.html" import flash_all_messages%}

{%block title%}Genotypes: View Dataset{%endblock%}

{%block pagetitle%}Genotypes: View Dataset{%endblock%}

{%block breadcrumbs%}
{{super()}}
<li class="breadcrumb-item">
  <a href="{{url_for('species.populations.genotypes.view_dataset',
           species_id=species.SpeciesId,
           population_id=population.Id,
           dataset_id=dataset.Id)}}">dataset</a>
</li>
{%endblock%}

{%block contents%}
{{flash_all_messages()}}

<div class="row">
  <h2>Genotype Dataset Details</h2>
  <table class="table">
    <thead>
      <tr>
        <th>Name</th>
        <th>Full Name</th>
      </tr>
    </thead>

    <tbody>
      <tr>
        <td>{{dataset.Name}}</td>
        <td>{{dataset.FullName}}</td>
      </tr>
    </tbody>
  </table>
</div>

<div class="row text-warning">
  <h2>Assembly Details</h2>

  <p>Maybe include the assembly details here if found to be necessary.</p>
</div>

<div class="row">
  <h2>Genotype Data</h2>

  <div class="col" style="margin-bottom: 3px;">
    <a href="#" class="btn btn-primary not-implemented">upload genotypes</a>
  </div>
</div>

{%endblock%}