diff options
Diffstat (limited to 'uploader/templates/genotypes')
-rw-r--r-- | uploader/templates/genotypes/list-genotypes.html | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/uploader/templates/genotypes/list-genotypes.html b/uploader/templates/genotypes/list-genotypes.html index 31b9eeb..8afd591 100644 --- a/uploader/templates/genotypes/list-genotypes.html +++ b/uploader/templates/genotypes/list-genotypes.html @@ -104,6 +104,26 @@ {%if datasets | length > 0%} <table class="table"> + <thead> + <tr> + <th>Name</th> + <th>Full Name</th> + </tr> + </thead> + + <tbody> + {%for dataset in datasets%} + <tr> + <td>{{dataset.Name}}</td> + <td><a href="{{url_for('species.populations.genotypes.view_dataset', + species_id=species.SpeciesId, + population_id=population.Id, + dataset_id=dataset.Id)}}" + title="View details regarding and manage dataset '{{dataset.FullName}}'"> + {{dataset.FullName}}</a></td> + </tr> + {%endfor%} + </tbody> </table> {%else%} <p class="text-warning"> |