{% extends "base_view.html" %} {% load widget_tweaks %} {% load bird_tags %} {% block title %} meliza-lab : user : {{ reserver }} {% endblock %} {% block content %}

Animals reserved by {{ reserver.get_full_name }}

{% render_field filter.form.color placeholder="Band color" class+="form-control" %}
{% render_field filter.form.band placeholder="Band number" class+="form-control" %}
{% render_field filter.form.uuid placeholder="UUID (beginning)" class+="form-control" %}
{% for animal in animal_list %} {% with history=animal.history %} {% endwith %} {% endfor %}
Name Species Sex Age Status Last Location UUID
{{ animal.name }} {{ animal.species }} {{ animal.sex }} {{ history.age_display }} {{ history.status_display }} {{ history.last_location|link_or_blank }} {{ animal.uuid }}
{% endblock %}