{% 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 }}
- kinship
- {{ pairing_kinship|floatformat:3 }}
- 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 }}
- eggs hatched
- {{ pairing.n_hatched }}
- 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
Name |
Sex |
Age |
Status |
Location |
Children |
UUID |
Reserved |
{% for animal in animal_list %}
{% with history=animal.history %}
{{ animal.name }} |
{{ animal.sex }} |
{{ history.age_display }} |
{{ history.status_display }} |
{{ history.last_location|link_or_blank }} |
{{ animal.n_hatched}} |
{{ animal.uuid }} |
{{ animal.reserved_by|link_to:"birds:user" }} |
{% endwith %}
{% endfor %}
Eggs
Name |
Expected Hatch |
{% for egg in egg_list %}
{{ egg.name }} |
{{ egg.history.expected_hatch|default_if_none:"(lost)" }} |
|
{% endfor %}
add an egg
Relevent Events
This table shows all of the events involving the sire, dam, and progeny (including eggs) during the pairing interval.
Animal |
Status |
Date |
Location |
Comments |
Entered by |
{% for event in event_list %}
{{ event.animal.name }} |
{{ event.status }} |
{{ event.date }} |
{{ event.location|link_or_blank }} |
{{ event.description }} |
{{ event.entered_by}} |
{% endfor %}
add an event to all birds
Other Pairings
{% endblock %}