{% extends "base.html" %} {% load custom_filters %} {% block title %}Breeding Cage Detail{% endblock title%} {% block scripts %}{% include "sortable_table_script.html" %}{% endblock scripts %} {% block header %}Breeding Cage - {{ breeding.Cage }}{% endblock header %} {% block content %} {% include "breeding_summary_table.html" %}

Breeding Parents

{% for male in breeding.Male.all %} {% endfor %} {% for female in breeding.Females.all %} {% endif %} {% endfor %}
Breeder Cage Rack Position Age (days) Status Backcross Generation Genotype
Male{{ male }} {{ male.Cage }} {{ male.Rack }} {{ male.Rack_Position }} {% if male.Death %} {{ male.Death }} {% else %} {{ male.age }} {% endif %} {{ male.Alive|yesno:"Alive,Deceased,Unknown" }} {{ male.Backcross }} {{ male.Generation }} {{ male.Genotype }}
Female{{ female }} {{ female.Cage }} {{ female.Rack }} {{ female.Rack_Position }} {% if female.Death %} {{ female.Death }} {% else %} {{ female.age }} {{ female.Alive|yesno:"Alive,Deceased,Unknown" }} {{ female.Backcross }} {{ female.Generation }} {{ female.Genotype }}

Pups

{% if perms.animal.add_animal %} {% endif %} {% if perms.animal.change_animal %} {% endif %}
{% with breeding.animal_set.all as animal_list %} {% include "animal_list_table.html" %} {% endwith %} {% if breeding.Timed_Mating %}

To enter information about timed matings click here. For instructions please go here

{% with breeding.plugevents_set.all as plug_list %}

Plug Events ({{plug_list.count}}) {% if perms.timed_mating.add_plugEvents %} {% endif %}

{% if plug_list %} {% include "plug_table.html" %} {% endif %} {% endwith %}
{% endif %} {% endblock content %}