{% 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 }}
Age Group |
Males |
Females |
Unknown |
Total |
{% for group,count in sp_counts %}
{{ group }} |
{{ count.M|default:"" }} |
{{ count.F|default:"" }} |
{{ count.U|default:"" }} |
{{ count|count_total }} |
{% endfor %}
{% endfor %}
Events
Event Type |
Total |
{% for item in event_totals %}
{{ item.status__name }} |
{{ item.count }} |
{% endfor %}
previous month
next month
list all events
{% endblock %}