{% extends "base_view.html" %} {% load bird_tags %} {% block title %} meliza-lab : bird colony {% endblock %} {% block content %}

Summary for {{ month }}/{{ year }}

Living animals

{% for species, sp_counts in bird_counts %}

{{ species }}

{% for group,count in sp_counts %} {% endfor %}
Age Group Males Females Unknown Total
{{ group }} {{ count.M|default:"" }} {{ count.F|default:"" }} {{ count.U|default:"" }} {{ count|count_total }}
{% endfor %}

Events

{% for item in event_totals %} {% endfor %}
Event Type Total
{{ item.status__name }} {{ item.count }}

previous month next month

list all events

{% endblock %}