{% extends "base_view.html" %} {% load widget_tweaks %} {% load bird_tags %} {% block title %} meliza-lab : kinship : {{ animal.name }} {% endblock %} {% block content %}

Kinship for {{ animal.name }}

This report shows the kinship coefficient between {{ animal.name }} and other living animals in the colony.

{% render_field filter.form.sex placeholder="Sex" class+="form-control" %}
{% 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 Sex Age Kinship Status Location Children UUID Tags
{{ animal.name }} {{ animal.sex }} {{ history.age_display }} {{ animal.kinship|default_if_none:""|stringformat:".3g" }} {{ history.status_display }} {{ history.last_location|link_or_blank }} {{ animal.n_hatched}} {{ animal.uuid }} {{ animal.tags.all|url_list }}

NB: When alive is False, age is at death or release

{% endblock %}