blob: 7d613124acf4cc98de16b27d2e1a6733d48279bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
{%extends "populations/base.html"%}
{%block lvl3_breadcrumbs%}
<li {%if activelink=="genotypes"%}
class="breadcrumb-item active"
{%else%}
class="breadcrumb-item"
{%endif%}>
{%if population is mapping%}
<a href="{{url_for('species.populations.genotypes.list_genotypes',
species_id=species.SpeciesId,
population_id=population.Id)}}">
{%if dataset is defined and dataset is mapping%}
{{dataset.Name}}
{%else%}
Genotypes
{%endif%}</a>
{%else%}
<a href="{{url_for('species.populations.genotypes.index')}}">Genotypes</a>
{%endif%}
</li>
{%block lvl4_breadcrumbs%}{%endblock%}
{%endblock%}
|