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

Pairing


sire
{{ pairing.sire.name }}
dam
{{ pairing.dam.name }}
began
{{ pairing.began }}
ended
{{ pairing.ended }}
purpose
{{ pairing.purpose|default_if_none:"" }}
last location
{{ pairing.last_location|default_if_none:"" }}
eggs laid
{{ pairing.eggs.count }}
progeny
{{ pairing.progeny.count }}
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

Eggs and Progeny

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

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 }} {{ event.description }}

Other Pairings

{% for pairing in pairing_list %} {% endfor %}
Dates Purpose Eggs Laid Progeny Comment
{{ pairing.began }} — {{ pairing.ended|default_if_none:"" }} {{ pairing.purpose }} {{ pairing.eggs.count }} {{ pairing.progeny.count }} {{ pairing.comment }}
{% endblock %}