{% extends "base_view.html" %} {% load bird_tags %} {% block title %} meliza-lab : location : {{ location }} {% endblock %} {% block content %}
{{ location.description }}
edit location (admin)Total: {{ animal_list|length }}
| Name | Species | Sex | Age | Status | UUID | Tags | {% for animal in animal_list %} {% with history=animal.history %}|
|---|---|---|---|---|---|---|---|
| {{ animal.name }} | {{ animal.species }} | {{ animal.sex }} | {{ history.age_display }} | {{ history.status_display }} | {{ animal.uuid }} | {{ animal.tags.all|url_list }} |
Total: {{ egg_list|length }}
| Name | Expected Hatch | Species | UUID | {% for egg in egg_list %}|
|---|---|---|---|---|
| {{ egg.name }} | {{ egg.life_history.expected_hatch }} | {{ egg.species }} | {{ egg.uuid }} |
| Animal | Status | Date | Age | Comments | Entered by | Edit | {% for event in event_list|slice:":10" %}
|---|---|---|---|---|---|---|
| {{ event.animal }} | {{ event.status }} | {{ event.date }} | {{ event.age_display }} | {{ event.description }} | {{ event.entered_by}} |