{% 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 }}
uuid
{{ animal.uuid }}
alive
{{ animal.alive }}
acquired
{{ animal.acquisition_event.event_date }}
age
{{ animal.age_days|agestr }}
sire
{% if animal.sire %}{{ animal.sire }}{% endif %}
dam
{% if animal.dam %}{{ animal.dam }}{% endif %}
reserved by
{{ animal.reserved_by }}
edit bird
{% if not animal.band_number %} band bird
{% endif %}

Events

{% for event in event_list %} {% endfor %}
Status Date Location Comments
{{ event.status }} {{ event.date }} {{ event.location }} {{ event.description }}
add event

Samples

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

Children

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