{% extends "base_view.html" %}
{% load bird_tags %}
{% block title %} meliza-lab : location : {{ location }} {% endblock %}
{% block content %}
{{ location }}
{{ location.description }}
edit location (admin)
Animals
Name |
Species |
Sex |
Age |
Status |
UUID |
Reserved |
{% for animal in animal_list %}
{% with history=animal.history %}
{{ animal.name }} |
{{ animal.species }} |
{{ animal.sex }} |
{{ history.age_display }} |
{{ history.status_display }} |
{{ animal.uuid }} |
{{ animal.reserved_by|link_to:"birds:user" }} |
|
{% endwith %}
{% endfor %}
Eggs
Name |
Expected Hatch |
Species |
UUID |
{% for egg in egg_list %}
{{ egg.name }} |
{{ egg.life_history.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_display }} |
{{ event.description }} |
{{ event.entered_by}} |
|
{% endfor %}
show all
{% endblock %}