diff options
author | Frederick Muriuki Muriithi | 2024-09-17 15:00:05 -0500 |
---|---|---|
committer | Frederick Muriuki Muriithi | 2024-09-17 15:00:44 -0500 |
commit | 1939b6728843aec2ab6fb1f56f2dcb72bb3e23dd (patch) | |
tree | 83a06db5894d46a830bb5c66ad4dfc1d28040042 /uploader/templates/populations | |
parent | 4c00c949cc52aa4cc2a38cf442ffb6e135f58306 (diff) | |
download | gn-uploader-1939b6728843aec2ab6fb1f56f2dcb72bb3e23dd.tar.gz |
UI Improvements: Move genotypes below populations.
Diffstat (limited to 'uploader/templates/populations')
-rw-r--r-- | uploader/templates/populations/view-population.html | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/uploader/templates/populations/view-population.html b/uploader/templates/populations/view-population.html index 319addc..1e2964e 100644 --- a/uploader/templates/populations/view-population.html +++ b/uploader/templates/populations/view-population.html @@ -62,6 +62,12 @@ <nav class="nav"> <ul> <li> + <a href="{{url_for('species.populations.genotypes.list_genotypes', + species_id=species.SpeciesId, + population_id=population.Id)}}" + title="Upload genotypes for {{species.FullName}}">Upload Genotypes</a> + </li> + <li> <a href="{{url_for('species.populations.samples.list_samples', species_id=species.SpeciesId, population_id=population.Id)}}" |