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

Pairing


species
{{ pairing.sire.species }}
sire
{{ pairing.sire.name }}
dam
{{ pairing.dam.name }}
began
{{ pairing.began_on }}
ended
{{ pairing.ended_on|default_if_none:"(still active)" }}
purpose
{{ pairing.purpose|default_if_none:"" }}
last location
{{ pairing.last_location|default_if_none:"" }}
eggs laid
{{ pairing.n_eggs }}
progeny
{{ pairing.n_progeny }}
oldest living progeny
{{ pairing.oldest_living_progeny_age|ageorblank }}
comment
{{ pairing.comment }}

{% if pairing.active %} end this pairing (separate or return to group housing)
{% else %} start a new clutch with this pair
{% endif %} edit this pairing (admin)
create a new pairing from scratch
show all pairings
show active pairings only

Progeny

{% for animal in animal_list %} {% endfor %}
Name Sex Age Alive Location Children UUID Reserved
{{ animal.name }} {{ animal.sex }} {{ animal.age|agestr }} ({{ animal.age_group }}) {{ animal.alive|yesno }} {{ animal.last_location|default_if_none:"" }} {{ animal.children.hatched.count}} {{ animal.uuid }} {% if animal.reserved_by %}{{ animal.reserved_by }}{% endif %}

Eggs

{% for egg in egg_list %} {% endfor %}
Name Expected Hatch
{{ egg.name }} {{ egg.expected_hatch|default_if_none:"(lost)" }}

Relevent Events

This table shows all of the events involving the sire, dam, and progeny (including eggs) during the pairing interval.

{% for event in event_list %} {% endfor %}
Animal Status Date Location Comments
{{ event.animal.name }} {{ event.status }} {{ event.date }} {{ event.location|link_or_blank }} {{ event.description }}

Other Pairings

{% for pairing in pairing_list %} {% endfor %}
Dates Purpose Eggs Laid Progeny Comment
{{ pairing.began_on }} — {{ pairing.ended_on|default_if_none:"" }} {{ pairing.purpose }} {{ pairing.n_eggs }} {{ pairing.n_progeny }} {{ pairing.comment }}
{% endblock %}