about summary refs log tree commit diff
path: root/uploader/templates/genotypes/view-dataset.html
blob: 1c4eccf391d10ba58415bb207facd81fbed18f21 (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
{%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>

  <p class="text-danger">
    Provide link to enable uploading of genotype data here.</p>
</div>

{%endblock%}