{% 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 }}
plumage
{{ animal.plumage }}
uuid
{{ animal.uuid }}
alive
{{ animal.alive|yesno }}
acquired
{{ animal.acquisition_event.event_date }}
age
{{ animal.age|agestr }} ({{ animal.age_group }})
{% if animal.expected_hatch %}
expected hatch
{{ animal.expected_hatch}}
{% endif %}
living children
{{ animal.children.alive.count }}
total children
{{ animal.children.hatched.count }}
unhatched eggs
{{ animal.children.unhatched.count }}
birth pairing
{% if animal.birth_pairing %}{{ animal.birth_pairing }}{% endif %}
sire
{% if animal.sire %}{{ animal.sire }}{% endif %}
dam
{% if animal.dam %}{{ animal.dam }}{% endif %}
reserved by
{% if animal.reserved_by %}{{ animal.reserved_by }}{% endif %}
{% if not animal.sexed %} update sex
{% endif %} {% if animal.reserved_by %} release reservation {% else %} reserve this bird {% endif %}
{% if not animal.band_number %} band bird
{% endif %} edit bird (advanced users only)

Recent Events

{% for event in event_list|slice:":10" %} {% endfor %}
Status Date Age Location Comments Entered by Edit
{{ event.status }} {{ event.date }} {{ event.age|agestr }} {{ event.location|link_or_blank }} {{ event.description }} {{ event.entered_by}}
show all   add event

Samples

{% include "birds/sample_table.html" %} show all   add sample

Pairings

{% include "birds/pairing_table.html" %}

Children

{% include "birds/animal_table.html" %}

view genealogy (may take a while)

{% endblock %}