{% 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 %} {% with history=animal.history %} {% endwith %} {% endfor %}
Name Species Sex Age Status UUID Reserved
{{ animal.name }} {{ animal.species }} {{ animal.sex }} {{ history.age_display }} {{ history.status_display }} {{ animal.uuid }} {{ animal.reserved_by|link_to:"birds:user" }}

Eggs

{% for egg in egg_list %} {% endfor %}
Name Expected Hatch Species UUID
{{ egg.name }} {{ egg.life_history.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_display }} {{ event.description }} {{ event.entered_by}}
show all   {% endblock %}