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

{{ animal.name }}


reserved by
{% if animal.reserved_by %}{{ animal.reserved_by }}{% endif %}
species
{{ animal.species }}
sex
{{ animal.sex }}
plumage
{{ animal.plumage }}
uuid
{{ animal.uuid }}
status
{{ history.summary }}
{% for measurement in animal_measurements %}
{{ measurement.type.name }}
{{ measurement.formatted }} (as of {{measurement.event.date}})
{% endfor %} {% if history.expected_hatch %}
expected hatch
{{ history.expected_hatch}}
{% endif %} {% if history.inbreeding_coefficient is not None %}
inbreeding coefficient
{{ history.inbreeding_coefficient|stringformat:".3g" }}
{% endif %}
family history
acquired
{{ animal.acquisition_event.event_date }}
birth pairing
{% if animal.birth_pairing %}{{ animal.birth_pairing.began_on}} - {{ animal.birth_pairing.ended_on|default_if_none:""}}{% endif %}
sire
{% if animal.sire %}{{ animal.sire }}: {{ animal.sire.history.summary }}{% endif %}
paternal grandsire
{% if animal.sire.sire %}{{ animal.sire.sire }}: {{ animal.sire.sire.history.summary }}{% endif %}
paternal granddam
{% if animal.sire.dam %}{{ animal.sire.dam }}: {{ animal.sire.dam.history.summary }}{% endif %}
dam
{% if animal.dam %}{{ animal.dam }}: {{ animal.dam.history.summary }}{% endif %}
maternal grandsire
{% if animal.dam.sire %}{{ animal.dam.sire }}: {{ animal.dam.sire.history.summary }}{% endif %}
maternal granddam
{% if animal.dam.dam %}{{ animal.dam.dam }}: {{ animal.dam.dam.history.summary }}{% endif %}
breeding outcomes
total eggs
{{ animal.n_eggs }}
successfully hatched
{{ animal.n_hatched }}
unexpectedly died
{{ kids.lost.count }}
currently alive
{{ animal.n_alive }}
{% 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_display }} {{ event.location|link_or_blank }} {{ event.description }} {{ event.entered_by}}
add event   all events   all measurements

Samples

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

Pairings

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

Children

{% include "birds/animal_table.html" with animal_list=kids only %} all children (including eggs)   full genealogy (may take a while)
{% endblock %}