{% extends "base_view.html" %} {% load staticfiles %} {% load widget_tweaks %} {% block title %} meliza-lab : bird colony : add clutch {% endblock title%} {% block css %} {% endblock %} {% block scripts %} {% endblock %} {% block content %}

New clutch

{% csrf_token %}

Instructions: Only enter clutches once the number of chicks is known. Enter the father, mother, number of chicks, and the most likely date of birth. This will create records for the new birds and for the hatch events. You will need to manually set tag information later, when the chicks are tagged.

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