{% extends "base_view.html" %} {% load date_fmt %} {% load widget_tweaks %} {% block title %} meliza-lab : pairings {% endblock %} {% block content %}
This report shows pairings, which begin when a male (sire) and female (dam) are placed in a cage to breed, and end when the pair is separated or moved to group housing. An active pair is one that has not yet been separated or moved. The progeny comprises the animals that were born during the pairing.
Click on the dates of any pairing to see details. This view allows you to create a new pairing (start a new clutch) with an inactive pair, or to break up an active pair.
You can filter this view by adding query parameters to the URL. Useful filter terms include sire (uuid), sire_color, sire_band, dam (uuid), dam_color, dam_band.
create a new pairing from scratch
show active pairings only
Sire | Dam | Dates | Purpose | Eggs Laid | Progeny | Oldest Living Progeny | Comment | {% for pairing in pairing_list %}
---|---|---|---|---|---|---|---|
{{ pairing.sire.name }} | {{ pairing.dam.name }} | {{ pairing.began }} — {{ pairing.ended|default_if_none:"" }} | {{ pairing.purpose|default_if_none:"" }} | {{ pairing.eggs.count }} | {{ pairing.progeny.count }} | {{ pairing.oldest_living_progeny_age|ageorblank }} | {{ pairing.comment }} |