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

Close pairing: {{ pair }}

{% csrf_token %}

Instructions: This form is for ending a pairing (separating the birds or moving them to group housing). Fill it out when you break up a clutch. If you set the New Location field, the form will automatically create events associated with moving the sire and dam to the specified location.

{% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %} {{ form.began.as_hidden }}
{% render_field form.ended class+="form-control" data-format="MM/dd/YYYY" %}
{% render_field form.location class+="form-control" %}
{% render_field form.entered_by class+="form-control" %}
{% render_field form.comment class+="form-control" rows="3"%}
{% endblock %}