{% extends 'base.html' %} {% load x_extras %} {% load compress %} {% block content %}
The table below lists all of the individuals in this project, along with phenotypes and any associated meta information.
This project contains {{ project.num_individuals }} individuals, listed below.
ID | Nickname | Family | Mother | Father | Gender | Affected | Phenotypes |
---|---|---|---|---|---|---|---|
{{ indiv.indiv_id }} | {{ indiv.nickname }} | {% if indiv.family_id %}{{ indiv.family_id }}{% endif %} | {{ indiv.maternal_id }} | {{ indiv.paternal_id }} | {% if indiv.gender == 'M' %}Male{% else %}{% if indiv.gender == 'F' %}Female{% else %}Unknown{% endif %}{% endif %} | {% if indiv.affected_status == 'A' %}Affected{% else %}{% if indiv.affected_status == 'N' %}Unaffected{% else %}Unknown{% endif %}{% endif %} |
{% for phenotype in phenotypes %}
{% if indiv.phenotypes|key:phenotype.slug %}{{ phenotype.name }} {% endif %} {% endfor %} |