{% extends "base_view.html" %} {% load widget_tweaks %} {% load bird_tags %} {% block title %} meliza-lab : kinship : {{ animal.name }} {% endblock %} {% block content %}
This report shows the kinship coefficient between {{ animal.name }} and other living animals in the colony.
| Name | Sex | Age | Kinship | Status | Location | Children | UUID | Tags | {% for animal in animal_list %} {% with history=animal.history %}
|---|---|---|---|---|---|---|---|---|
| {{ 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 %}