aboutsummaryrefslogtreecommitdiff
path: root/uploader/templates/species
diff options
context:
space:
mode:
authorFrederick Muriuki Muriithi2024-12-10 15:42:06 -0600
committerFrederick Muriuki Muriithi2024-12-10 15:45:30 -0600
commit98700fb44015852798fa7baabf727e8dcd2cd7a7 (patch)
tree58fff1bab6f074dee1aa7c454812d8be7d63762f /uploader/templates/species
parent544db333dcd6bddd2d664b8fcf0003d9edfa7a68 (diff)
downloadgn-uploader-98700fb44015852798fa7baabf727e8dcd2cd7a7.tar.gz
Improve breadcrumbs
Update the breadcrumb links such that each will lead back the parent section rather than to generic section pages. This is updated for the relevant parts of the UI.
Diffstat (limited to 'uploader/templates/species')
-rw-r--r--uploader/templates/species/base.html5
1 files changed, 5 insertions, 0 deletions
diff --git a/uploader/templates/species/base.html b/uploader/templates/species/base.html
index 04391db..f64f72b 100644
--- a/uploader/templates/species/base.html
+++ b/uploader/templates/species/base.html
@@ -6,7 +6,12 @@
{%else%}
class="breadcrumb-item"
{%endif%}>
+ {%if species is mapping%}
+ <a href="{{url_for('species.view_species', species_id=species.SpeciesId)}}">
+ {{species.Name}}</a>
+ {%else%}
<a href="{{url_for('species.list_species')}}">Species</a>
+ {%endif%}
</li>
{%block lvl2_breadcrumbs%}{%endblock%}
{%endblock%}