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

{{ location }}

{{ location.description }}

Animals

{% for animal in animal_list %} {% endfor %}
Name Species Sex Age Alive Children UUID Reserved
{{ animal.name }} {{ animal.species }} {{ animal.sex }} {{ animal.age|agestr }} ({{ animal.age_group }}) {{ animal.alive|yesno }} {{ animal.children.hatched.count}} {{ animal.uuid }} {% if animal.reserved_by %}{{ animal.reserved_by }}{% endif %}

Eggs

{% for egg in egg_list %} {% endfor %}
Name Expected Hatch Species UUID
{{ egg.name }} {{ egg.expected_hatch }} {{ egg.species }} {{ egg.uuid }}

Recent Events

{% for event in event_list|slice:":10" %} {% endfor %}
Animal Status Date Age Comments Entered by Edit
{{ event.animal }} {{ event.status }} {{ event.date }} {{ event.age|agestr }} {{ event.description }} {{ event.entered_by}}
show all   {% endblock %}