{% extends "base_view.html" %} {% load date_fmt %} {% block title %} meliza-lab : animals by location {% endblock %} {% block content %}
Location | Name | Species | Band | Sex | Age (days) | UUID | Reserved | {% for event in object_list|dictsort:"location.name" %}
---|---|---|---|---|---|---|---|
{{ 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 %} |