diff options
author | Frederick Muriuki Muriithi | 2024-09-03 16:49:36 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-09-03 16:51:28 -0500 |
commit | 795562b3855b2e4dca5632d53a922e84a2859bf0 (patch) | |
tree | 555a959e488941dadbef604add51feb609716290 /uploader/templates/populations/list-populations.html | |
parent | f1add5f4ea332ddfb2e902fb8c38e88a1dbcf6a2 (diff) | |
download | gn-uploader-795562b3855b2e4dca5632d53a922e84a2859bf0.tar.gz |
View a specific population's details.
Diffstat (limited to 'uploader/templates/populations/list-populations.html')
-rw-r--r-- | uploader/templates/populations/list-populations.html | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/uploader/templates/populations/list-populations.html b/uploader/templates/populations/list-populations.html index c14a28c..c3ba180 100644 --- a/uploader/templates/populations/list-populations.html +++ b/uploader/templates/populations/list-populations.html @@ -59,7 +59,9 @@ {%for population in populations%} <tr> <td> - <a href="#{{population.InbredSetId}}" + <a href="{{url_for('species.populations.view_population', + species_id=species.SpeciesId, + population_id=population.InbredSetId)}}" title="Population '{{population.FullName}}' for species '{{species.FullName}}'."> {{population.Name}} </a> |