{% extends "base_view.html" %} {% load widget_tweaks %} {% load bird_tags %} {% block title %} meliza-lab : nest check confirmation {% endblock %} {% block content %}

Nest Check — Confirm


{% for location, items in changes.items %}
{{ location.name }}
{% for item in items %}
{% if item.status is None %} no changes {% elif item.animal %} {{ item.animal }} {{ item.status }} {% else %} {{ item.sire }} and {{ item.dam }} laid an egg {% endif %}
{% endfor %} {% endfor %}

Instructions: Confirm the changes above, select your username and mark the checkbox to confirm that you checked your work, then click the button to update the database.

{% csrf_token %} {{ nest_formset.management_form }} {% for form in nest_formset %} {{ form.location }} {{ form.eggs.as_hidden }} {{ form.chicks.as_hidden }} {% endfor %}
{% render_field user_form.comments class+="form-control" %}
{% render_field user_form.entered_by class+="form-control" %}
{% endblock %}