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

Band entry

{% csrf_token %}

Instructions: This form is for adding a single banded bird to the database. For birds hatched in the breeding colony, determine hatch date in a clutch using the nest observation sheet. Parents are required, and species will be inferred from the parents. Zebra finches should be banded between 12 to 18 days of age.

For birds acquired by other methods (including capture), parents are not required, but species must be set manually.

{% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% render_field form.acq_status class+="form-control" %}
{% render_field form.acq_date class+="form-control" data-format="MM/dd/YYYY" %}
{% render_field form.species class+="form-control" %}
{% render_field form.sire class+="form-control" %}
{% render_field form.dam class+="form-control" %}
{% render_field form.banding_date class+="form-control" data-format="MM/dd/YYYY" %}
{% render_field form.band_color class+="form-control" %}
{% render_field form.band_number 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 %}