{% extends "base_view.html" %} {% load bird_tags %} {% block title %} meliza-lab : bird : {{ animal.name }} {% endblock %} {% block content %}

{{ animal.name }}


species
{{ animal.species }}
sex
{{ animal.sex }}
band
{{ animal.band }}
plumage
{{ animal.plumage }}
uuid
{{ animal.uuid }}
alive
{{ animal.alive|yesno }}
acquired
{{ animal.acquisition_event.event_date }}
age
{{ animal.age_days|agestr }} ({{ animal.age_group }})

Great-great-grandparents

{% include "birds/animal_table.html" with animal_list=ancestors.3 %}

Great-grandparents

{% include "birds/animal_table.html" with animal_list=ancestors.2 %}

Grandparents

{% include "birds/animal_table.html" with animal_list=ancestors.1 %}

Parents

{% include "birds/animal_table.html" with animal_list=ancestors.0 %}

F1 (children)

total
{{ descendents.0.count }}
living
{{ living.0.count }}
{% include "birds/animal_table.html" with animal_list=descendents.0 %}

F2 (grandchildren)

total
{{ descendents.1.count }}
living
{{ living.1.count }}
{% include "birds/animal_table.html" with animal_list=descendents.1 %}

F3 (great-grandchildren)

total
{{ descendents.2.count }}
living
{{ living.2.count }}
{% include "birds/animal_table.html" with animal_list=descendents.2 %}

F4 (great-great-grandchildren)

total
{{ descendents.3.count }}
living
{{ living.3.count }}
{% include "birds/animal_table.html" with animal_list=descendents.3 %} {% endblock %}