{% extends "base_view.html" %} {% load date_fmt %} {% block title %} meliza-lab : animals by location {% endblock %} {% block content %}

Living Animals by Location

{% for event in object_list|dictsort:"location.name" %} {% endfor %}
Location Name Species Band Sex Age (days) UUID Reserved
{{ event.location.name }} {{ event.animal.name }} {{ event.animal.species }} {{ event.animal.band }} {{ event.animal.sex }} {{ event.animal.age_days|agestr }} {{ event.animal.uuid }} {% if event.animal.reserved_by %}{{ event.animal.reserved_by }}{% endif %}
{% endblock %}