{% 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
Name |
Sex |
Age |
Alive |
Location |
Children |
UUID |
Reserved |
{% for animal in animal_list %}
{{ 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 %} |
|
{% endfor %}
Eggs
Name |
Expected Hatch |
{% for egg in egg_list %}
{{ egg.name }} |
{{ egg.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 |
{% for event in event_list %}
{{ event.animal.name }} |
{{ event.status }} |
{{ event.date }} |
{{ event.location|link_or_blank }} |
{{ event.description }} |
{% endfor %}
add an event to all birds
Other Pairings
{% endblock %}