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

New pairing:

{% csrf_token %}

Instructions: This form is for setting up a pair for breeding. Fill it out when you place a male and female together in a cage. If you set the New Location field, the form will automatically create events associated with moving the sire and dam to the specified location.

Use the admin interface to do backentry of historical pairings.

{% 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.purpose class+="form-control" %}
{% render_field form.began_on class+="form-control" data-format="MM/dd/YYYY" %}
{% render_field form.entered_by class+="form-control" %}
{% render_field form.location class+="form-control" %}
{% endblock %}