{% extends "base_view.html" %} {% 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 }}
sire
{% if animal.sire %}{{ animal.sire }}{% endif %}
dam
{% if animal.dam %}{{ animal.dam }}{% endif %}
reserved by
{{ animal.reserved_by }}
edit bird

Events

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

Children

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