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

Update sex: {{ animal }}

{% csrf_token %}

Instructions: This form will update the sex of an animal and generate a corresponding event in the database.

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