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

New bird entry

{% csrf_token %}

Instructions: This form is for adding a single banded bird to the database. Note, for birds hatched in the breeding colony, the preferred method of adding birds is using the nest check form. If the bird is already the database, use the "band bird" link on its page.

Parents are required for birds acquired through breeding. 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.sex class+="form-control" %}
{% render_field form.plumage 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 %}