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

Locations

{% regroup location_list by room as room_groups %} {% for room_group in room_groups %}

{{ room_group.grouper|default:"No Room" }}

{% for location in room_group.list %} {% endfor %}
Cage Description Animals Eggs
{{ location.name }} {{ location.description }} {{ location.birds.alive.count }} {{ location.birds.eggs.existing.count }}
{% endfor %} {% if page_obj %} {% endif %} {% endblock %}