{% extends "base.html" %} {% load custom_filters %} {% block title %}Strain Detail - {{ strain }}{% endblock title %} {% block scripts %} {% include "sortable_table_script.html" %} {% endblock scripts %} {% block header %}Strain Detail - {{ strain }}{% endblock header %} {% block content %}

{{ animal_list.count }} mice in {{ cages.count }} cages{% if breeding_cages.count > 0%} ({{ breeding_cages.count }} Breeding Cages){% endif %}.

{% if active %}

Only live mice and cages are shown click here to see all mice and breeding cages.

{% else %}

All mice and cages are shown click here to see current mice and breeding cages.

{% endif %} {% if strain.breeding_set.count > 0%}

Filter animals based on the type of breeding.

Breeding Cage Summary

{% with breeding_cages as breeding_list %} {% include "breeding_table.html" %} {% endwith %}
{% endif %}

Animal List

{% include "animal_list_table.html" %}
{{ strain.Comments }}
{% if perms.animal.change_strain %}
{% endif %} {% endblock content %}