{% extends "base_view.html" %} {% load date_fmt %} {% 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 }})
{% if animal.expected_hatch %}
expected hatch
{{ animal.expected_hatch}}
{% endif %}
living children
{{ animal.living_children.count }}
total children
{{ animal.all_children.count }}
unhatched eggs
{{ animal.unhatched.count }}
sire
{% if animal.sire %}{{ animal.sire }}{% endif %}
dam
{% if animal.dam %}{{ animal.dam }}{% endif %}
reserved by
{{ animal.reserved_by }}
{% 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 }} {% age_at animal event %} {{ event.location }} {{ 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 %}