{% extends "base_view.html" %} {% load static %} {% load widget_tweaks %} {% block title %} meliza-lab : bird colony : add egg to pairing {% endblock title%} {% block css %} {% endblock %} {% block scripts %} {% endblock %} {% block content %}

Add egg to {{ pairing }}

{% csrf_token %}

Instructions: This form is for adding an egg to a pairing. Normally this is done through the nest check form, but it can be helpful to have a manual option. The event for the egg being laid will have the same location as the parents on that date.

{% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% render_field form.date class+="form-control" data-format="MM/dd/YYYY" %}
{% render_field form.comments class+="form-control" rows="3"%}
{% render_field form.user class+="form-control" %}
{% endblock %}