about summary refs log tree commit diff
path: root/uploader/templates/genotypes/macro-display-dataset-card.html
blob: 2b197d4da7a7529c052b2ceba6e9b4812fc06af8 (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
{%from "populations/macro-display-population-card.html" import display_sui_population_card%}

{%macro display_dataset_card(species, population, dataset)%}
{{display_sui_population_card(species, population)}}
<div class="row">
  <table class="table">
    <caption>Current genotype dataset</caption>
    <tbody>
      <tr>
        <th>Name</th>
        <td>{{dataset.Name}}</td>
      </tr>
      <tr>
        <th>Full Name</th>
        <td>{{dataset.FullName}}</td>
      </tr>
      <tr>
        <th>Short Name</th>
        <td>{{dataset.ShortName}}</td>
      </tr>
    </tbody>
  </table>
</div>
{%endmacro%}