{% extends 'analysispage.html' %} {% block title %}Cohorts{% endblock %} {% block links %} Project: {{ project }} {% endblock %} {% block desc %}

This page lists all the Cohorts for this project. Cohort functionality is very preliminary at the moment - see data organization for more details.

{% endblock %} {% block innercontent %}
{% for cohort in cohorts %}
{% if cohort.description %} {{ cohort.description }} {% else %} No description {% endif %}
{% empty %}

No cohorts have been created for this project.

{% endfor %}
Add Cohort
{% endblock %}