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

New event: {{ animal }}

{% csrf_token %}

Instructions: This form is for adding an event to the database. Events track each individual's life history and allow us to determine its current status and location. For convenience, you can only add events on this form for living birds. You can use the admin interface to add events for other birds, or edit existing events.

{% 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 %}