{% extends "base_view.html" %}
{% load bird_tags %}
{% block title %} meliza-lab : location : {{ location }} {% endblock %}
{% block content %}
{{ location }}
{{ location.description }}
Animals
Name |
Species |
Sex |
Age |
Alive |
Children |
UUID |
Reserved |
{% for animal in animal_list %}
{{ 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 %} |
|
{% endfor %}
Eggs
Name |
Expected Hatch |
Species |
UUID |
{% for egg in egg_list %}
{{ egg.name }} |
{{ egg.expected_hatch }} |
{{ egg.species }} |
{{ egg.uuid }} |
|
{% endfor %}
Recent Events
Animal |
Status |
Date |
Age |
Comments |
Entered by |
Edit |
{% for event in event_list|slice:":10" %}
{{ event.animal }} |
{{ event.status }} |
{{ event.date }} |
{{ event.age|agestr }} |
{{ event.description }} |
{{ event.entered_by}} |
|
{% endfor %}
show all
{% endblock %}