{% extends "base.html" %} {% block title %}Mouse Detail{% endblock title %} {% block scripts %}{% include "sortable_table_script.html" %}{% endblock scripts %} {% block header %}Mouse Detail - {{ animal }}{% endblock header %} {% block content %} {% if animal.Death %} This mouse died on {{ animal.Death }}. Cause of death was {{ animal.Cause_of_Death }}. This mouse was {{ animal.age }} days old. {% else %}{% if animal.Born %} This mouse is {{ animal.Born|timesince }} old. {% else %} This mouse has an unknown age. {% endif %}{% endif %} {% load custom_filters %}
MouseID | Strain | Background | Genotype | Gender | Cage | Rack | Position | Backcross | Generation | Born | Age | Status | Markings | ||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
{{ animal.MouseID}} | {{ animal.Strain }} | {{ animal.Background }} | {{ animal.Genotype }} | {{ animal.Gender }} | {% if animal.Cage %}{{ animal.Cage}}{% endif %} | {{ animal.Rack|all_caps }} | {{ animal.Rack_Position|all_caps }} | {{ animal.Backcross }} | {{ animal.Generation }} | {{ animal.Born }} | {% if animal.Death %}{{ animal.Death }} | {% else %}{{ animal.Born|timesince }} | {% endif %} {% if animal.Death %}Dead | {% else %}Alive | {% endif %}{{ animal.Markings }} |
No measurements for this animal.
{% endif %}This mouse has had {{ animal.medicalissue_set.count }} medical issues.
{% with animal.medicalissue_set.all as medical_issues %} {% include "veterinary_summary_snippet.html" %} {% endwith %}