{% extends 'base.html' %} {% load x_extras %} {% load compress %} {% block content %}

This project contains {{ project.num_individuals }} individuals, listed below.

{% for indiv in individuals %} {% endfor %}
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 %}
{% compress js %} {% include "static_modules/libraries.html" %} {% endcompress %} {% endblock %}