aboutsummaryrefslogtreecommitdiff
path: root/uploader/templates/phenotypes/base.html
blob: adbc0121df3036df9c37c9c6cc80e91cc77bc073 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{%extends "populations/base.html"%}

{%block lvl3_breadcrumbs%}
<li {%if activelink=="phenotypes"%}
    class="breadcrumb-item active"
    {%else%}
    class="breadcrumb-item"
    {%endif%}>
  {%if dataset is mapping%}
  <a href="{{url_for('species.populations.phenotypes.view_dataset',
           species_id=species.SpeciesId,
           population_id=population.Id,
           dataset_id=dataset.Id)}}">{{dataset.Name}}</a>
  {%else%}
  <a href="{{url_for('species.populations.phenotypes.index')}}">Phenotypes</a>
  {%endif%}
</li>
{%block lvl4_breadcrumbs%}{%endblock%}
{%endblock%}