blob: 11b108b1b3a1c050dff6cf5d5c41f97f61c824c3 (
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
|
{%from "populations/macro-display-population-card.html" import display_population_card%}
{%macro display_pheno_dataset_card(species, population, dataset)%}
{{display_population_card(species, population)}}
<div class="card">
<div class="card-body">
<h5 class="card-title">Phenotypes' Dataset</h5>
<div class="card-text">
<table class="table">
<tbody>
<tr>
<td>Name</td>
<td>{{dataset.Name}}</td>
</tr>
<tr>
<td>Full Name</td>
<td>{{dataset.FullName}}</td>
</tr>
<tr>
<td>Short Name</td>
<td>{{dataset.ShortName}}</td>
</tr>
</tbody>
</table>
</div>
</div>
</div>
{%endmacro%}
|