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

Nest Check — Confirm


{% for form in nest_formset %} {% with nest=form.cleaned_data %} {% endwith %} {% endfor %}
location pair changes
{{ nest.location }} {{ nest.pairing.short_name }} {% for change in form.change_summary %} {{ change }}
{% endfor %}

Instructions: Confirm the changes above, select your username and mark the checkbox to indicate 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.pairing }} {{ 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 %}