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

Add event for {{ pairing }}

{% csrf_token %}

Instructions: This form adds an event to all the animals in {{ pairing }}: the sire, the dam, and all the progeny that were alive as of the selected date. Useful if you move all the birds to a new loction. Only dates between the start and end of the pairing are allowed. Use this form with some caution, as it can take some work to clean up if you make a mistake.

{% if form.non_field_errors %}
{{ form.non_field_errors }}
{% endif %}
{% render_field form.status class+="form-control" %}
{% render_field form.date class+="form-control" data-format="MM/dd/YYYY" %}
{% render_field form.location class+="form-control" %}
{% render_field form.description class+="form-control" rows="3"%}
{% render_field form.entered_by class+="form-control" %}
{% endblock %}