{% extends "base_view.html" %}
{% load bird_tags %}
{% block title %} meliza-lab : breeding report {% endblock %}
{% block content %}
Breeding Report
location |
pair |
established |
{% for date in dates %}
{{ date|date:"D m/d/Y" }} |
{% endfor %}
{% for pairing in pairs %}
{{ pairing.location }} |
{{ pairing.pair.short_name }}
|
{{ pairing.pair.began_on|date:"m/d/Y" }} |
{% for day in pairing.counts %}
{{ day|count_summary }}
|
{% endfor %}
{% endfor %}
Nest checks
Date |
User |
Comments |
{% for check in checks %}
{{ check.datetime|date:"D m/d/Y" }} |
{{ check.entered_by }} |
{{ check.comments }} |
{% endfor %}
enter nest check for today
{% endblock %}