blob: cc01c9edf78fb785f55f15c36bbae223e33a5fc8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{%extends "species/sui-base.html"%}
{%block breadcrumbs%}
{{super()}}
<li class="breadcrumb-item">
<a href="{{url_for('species.populations.view_population',
species_id=species['SpeciesId'],
population_id=population['Id'])}}">
{{population["FullName"]}}
</a>
</li>
{%endblock%}
|